Files
nixpkgs/pkgs/by-name/in/installShellFiles/package.nix
2026-05-25 13:48:20 +02:00

18 lines
339 B
Nix

{
lib,
callPackage,
makeSetupHook,
}:
# See the header comment in ./setup-hook.sh for example usage.
makeSetupHook {
name = "install-shell-files";
passthru = {
tests = lib.packagesFromDirectoryRecursive {
inherit callPackage;
directory = ./tests;
};
};
meta.license = lib.licenses.mit;
} ./setup-hook.sh