Merge pull request #225764 from domenkozar/cachix-static-compilation

pkgsStatic.cachix: make it build
This commit is contained in:
Domen Kožar 2023-04-11 17:38:18 +01:00 committed by GitHub
commit 523cdb25c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19443,13 +19443,7 @@ 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 haskell.packages.ghc94.cachix).overrideAttrs(o: {
passthru = o.passthru or {} // {
tests = o.passthru.tests or {} // {
inherit hci;
};
};
});
cachix = haskell.lib.justStaticExecutables haskellPackages.cachix;
calcium = callPackage ../development/libraries/calcium { };