mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
13 lines
212 B
Nix
13 lines
212 B
Nix
{
|
|
makeSetupHook,
|
|
installShellFiles,
|
|
jq,
|
|
}:
|
|
|
|
makeSetupHook {
|
|
name = "nodejs-install-manuals";
|
|
propagatedBuildInputs = [ installShellFiles ];
|
|
substitutions = {
|
|
jq = "${jq}/bin/jq";
|
|
};
|
|
} ./hook.sh
|