Skip to content

Commit b46d9d2

Browse files
committed
Fix musl64 unlit not found issue
1 parent c05e751 commit b46d9d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builder/ghc-for-component-wrapper.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ let
125125
done
126126
127127
''
128-
+ lib.optionalString (stdenv.targetPlatform.isMusl && !haskellLib.isNativeMusl && builtins.compareVersions ghc.version "9.9" >0) ''
128+
+ lib.optionalString (haskellLib.isNativeMusl && builtins.compareVersions ghc.version "9.9" >0) ''
129129
ln -s $wrappedGhc/bin/${targetPrefix}unlit $wrappedGhc/bin/unlit
130130
ln -s $wrappedGhc/bin/${ghcCommand}-iserv $wrappedGhc/bin/ghc-iserv
131131
ln -s $wrappedGhc/bin/${ghcCommand}-iserv-prof $wrappedGhc/bin/ghc-iserv-prof

0 commit comments

Comments
 (0)