cachix: Make sure hercules-ci-agent builds
This commit is contained in:
parent
50da224979
commit
b81c610ae4
1 changed files with 7 additions and 1 deletions
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue