cachix&niv: use separate bin output
This commit is contained in:
parent
606b9f40aa
commit
3a59830c44
2 changed files with 6 additions and 6 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -10420,7 +10420,9 @@ in
|
|||
|
||||
c-blosc = callPackage ../development/libraries/c-blosc { };
|
||||
|
||||
cachix = haskell.lib.justStaticExecutables haskellPackages.cachix;
|
||||
cachix = haskellPackages.cachix.bin;
|
||||
|
||||
niv = haskellPackages.niv.bin;
|
||||
|
||||
capnproto = callPackage ../development/libraries/capnproto { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue