summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ca/cachix/package.nix
blob: b0f3203c5956b5a3a5fc04569817d8f43332e833 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  lib,
  haskell,
  haskellPackages,
}:
let
  inherit (haskell.lib) compose;
in
lib.pipe haskellPackages.cachix [
  compose.justStaticExecutables
  (compose.overrideCabal { mainProgram = "cachix"; })
  lib.getBin
]