We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b1f3bc commit e4e2414Copy full SHA for e4e2414
overlays/musl.nix
@@ -25,8 +25,11 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({
25
# See https://github.com/input-output-hk/haskell.nix/issues/948
26
postgresql = (prev.postgresql.overrideAttrs (old: { dontDisableStatic = true; }))
27
.override { enableSystemd = false; gssSupport = false; };
28
+
29
openssl = prev.openssl.override { static = true; };
30
31
+ icu = (prev.icu.overrideAttrs (old: { configureFlags = old.configureFlags ++ [ "--enable-static" "--disable-shared" ]; }));
32
33
# Fails on cross compile
34
nix = prev.nix.overrideAttrs (_: { doInstallCheck = false; });
35
} // prev.lib.optionalAttrs (prev.lib.versionAtLeast prev.lib.trivial.release "20.03") {
0 commit comments