cachix: workaround https://github.com/NixOS/nix/issues/2990
This commit is contained in:
parent
45e3058f78
commit
ab5863afad
|
@ -95,7 +95,7 @@ self: super: builtins.intersectAttrs super {
|
|||
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
|
||||
|
||||
# profiling is disabled to allow C++/C mess to work, which is fixed in GHC 8.8
|
||||
cachix = disableLibraryProfiling (enableSeparateBinOutput super.cachix);
|
||||
cachix = disableLibraryProfiling super.cachix;
|
||||
|
||||
niv = enableSeparateBinOutput super.niv;
|
||||
|
||||
|
|
|
@ -10467,7 +10467,8 @@ in
|
|||
|
||||
c-blosc = callPackage ../development/libraries/c-blosc { };
|
||||
|
||||
cachix = haskellPackages.cachix.bin;
|
||||
# justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990
|
||||
cachix = haskell.lib.justStaticExecutables haskellPackages.cachix;
|
||||
|
||||
niv = haskellPackages.niv.bin;
|
||||
|
||||
|
|
Loading…
Reference in New Issue