aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/build-support/install-shell-files/default.nix
blob: d50661ddc65d1810eaaee9075fcaa6b0b640f94f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ makeSetupHook, tests }:

# See the header comment in ../setup-hooks/install-shell-files.sh for example usage.
let
  setupHook = makeSetupHook { name = "install-shell-files"; } ../setup-hooks/install-shell-files.sh;
in

setupHook.overrideAttrs (oldAttrs: {
  passthru = (oldAttrs.passthru or {}) // {
    tests = tests.install-shell-files;
  };
})