cachix&niv: use separate bin output

This commit is contained in:
Domen Kožar
2019-09-29 09:52:11 +02:00
parent 606b9f40aa
commit 3a59830c44
2 changed files with 6 additions and 6 deletions

View File

@@ -94,11 +94,9 @@ self: super: builtins.intersectAttrs super {
# Won't find it's header files without help.
sfml-audio = appendConfigureFlag super.sfml-audio "--extra-include-dirs=${pkgs.openal}/include/AL";
cachix = overrideCabal (addBuildTools (enableSeparateBinOutput super.cachix) [pkgs.boost]) (drv: {
postPatch = (drv.postPatch or "") + ''
substituteInPlace cachix.cabal --replace "c++14" "c++17"
'';
});
cachix = addBuildTools (enableSeparateBinOutput super.cachix) [pkgs.boost];
niv = enableSeparateBinOutput super.niv;
ghcid = enableSeparateBinOutput super.ghcid;