3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/cachix/default.nix

9 lines
243 B
Nix
Raw Normal View History

2019-03-05 03:59:51 +00:00
{ haskellPackages, haskell }:
(haskellPackages.override {
overrides = self: super: {
cachix = haskell.lib.justStaticExecutables (super.callPackage ./cachix.nix {});
cachix-api = super.callPackage ./cachix-api.nix {};
};
}).cachix