This commit is contained in:
Domen Kožar 2019-10-03 10:52:06 +02:00
parent 45e3058f78
commit ab5863afad
No known key found for this signature in database
GPG key ID: C2FFBCAFD2C24246
2 changed files with 3 additions and 2 deletions

View file

@ -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;

View file

@ -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;