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 8bf6e68 commit 38d40aeCopy full SHA for 38d40ae
overlays/musl.nix
@@ -29,7 +29,9 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({
29
configureFlags = oldAttrs.configureFlags ++ ["--enable-static"];
30
});
31
32
- numactl = prev.numactl.overrideAttrs (_: { configureFlags = ["--enable-static"];});
+ numactl = prev.numactl.overrideAttrs (oldAttrs: {
33
+ configureFlags = (oldAttrs.configureFlags or []) ++ ["--enable-static"];
34
+ });
35
36
# See https://github.com/input-output-hk/haskell.nix/issues/948
37
postgresql = (prev.postgresql.overrideAttrs (_old: {
0 commit comments