File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -25,10 +25,13 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isMusl ({
25
25
xz = prev . xz . override { enableStatic = true ; } ;
26
26
lzma = prev . lzma . override { enableStatic = true ; } ;
27
27
pcre = prev . pcre . overrideAttrs ( _ : { dontDisableStatic = true ; } ) ;
28
- secp256k1 = prev . secp256k1 . overrideAttrs ( oldAttrs : {
29
- configureFlags = oldAttrs . configureFlags ++ [ "--enable-static" ] ; } ) ;
28
+ secp256k1 = prev . secp256k1 . overrideAttrs ( oldAttrs : {
29
+ configureFlags = oldAttrs . configureFlags ++ [ "--enable-static" ] ;
30
+ } ) ;
30
31
31
- numactl = prev . numactl . overrideAttrs ( _ : { configureFlags = [ "--enable-static" ] ; } ) ;
32
+ numactl = prev . numactl . overrideAttrs ( oldAttrs : {
33
+ configureFlags = ( oldAttrs . configureFlags or [ ] ) ++ [ "--enable-static" ] ;
34
+ } ) ;
32
35
33
36
# See https://github.com/input-output-hk/haskell.nix/issues/948
34
37
postgresql = ( prev . postgresql . overrideAttrs ( _old : {
You can’t perform that action at this time.
0 commit comments