core/pkgs/build-support/install-shell-files/default.nix
2024-05-13 22:24:10 +01:00

13 lines
354 B
Nix

{ 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;
};
})