cachix: Make sure hercules-ci-agent builds

This commit is contained in:
Robert Hensing 2022-12-20 01:35:37 +01:00
parent 50da224979
commit b81c610ae4

View file

@ -18628,7 +18628,13 @@ with pkgs;
c-blosc = callPackage ../development/libraries/c-blosc { };
# justStaticExecutables is needed due to https://github.com/NixOS/nix/issues/2990
cachix = haskell.lib.compose.justStaticExecutables haskellPackages.cachix;
cachix = (haskell.lib.compose.justStaticExecutables haskellPackages.cachix).overrideAttrs(o: {
passthru = o.passthru or {} // {
tests = o.passthru.tests or {} // {
inherit hci;
};
};
});
cubeb = callPackage ../development/libraries/audio/cubeb { };