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 d719035 commit 8bf6e68Copy full SHA for 8bf6e68
overlays/musl.nix
@@ -25,8 +25,9 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({
25
xz = prev.xz.override { enableStatic = true; };
26
lzma = prev.lzma.override { enableStatic = true; };
27
pcre = prev.pcre.overrideAttrs (_: { dontDisableStatic = true; });
28
- secp256k1 = prev.secp256k1.overrideAttrs ( oldAttrs: {
29
- configureFlags = oldAttrs.configureFlags ++ ["--enable-static"]; });
+ secp256k1 = prev.secp256k1.overrideAttrs (oldAttrs: {
+ configureFlags = oldAttrs.configureFlags ++ ["--enable-static"];
30
+ });
31
32
numactl = prev.numactl.overrideAttrs (_: { configureFlags = ["--enable-static"];});
33
0 commit comments