File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -589,7 +589,7 @@ haskell-nix.haskellLib.makeCompilerDeps (stdenv.mkDerivation (rec {
589
589
configurePlatforms = [ "build" "host" ] ++ lib . optional ( ! targetPlatform . isGhcjs ) "target" ;
590
590
591
591
enableParallelBuilding = true ;
592
- postPatch = lib . optional ( targetPlatform . isWasm ) ''
592
+ postPatch = lib . optionalString ( targetPlatform . isWasm ) ''
593
593
substituteInPlace utils/jsffi/dyld.mjs \
594
594
--replace-fail \
595
595
"node --disable-warning=ExperimentalWarning --experimental-wasm-type-reflection --no-turbo-fast-api-calls --wasm-lazy-validation" \
@@ -602,7 +602,9 @@ haskell-nix.haskellLib.makeCompilerDeps (stdenv.mkDerivation (rec {
602
602
"$@"
603
603
''
604
604
} "
605
- '' + "patchShebangs ." ;
605
+ '' + ''
606
+ patchShebangs .
607
+ '' ;
606
608
607
609
outputs = [ "out" "doc" "generated" ] ;
608
610
You can’t perform that action at this time.
0 commit comments