1{
2 makeSetupHook,
3 installShellFiles,
4 makeWrapper,
5 nodejs,
6 jq,
7}:
8
9makeSetupHook {
10 name = "nodejs-install-executables";
11 propagatedBuildInputs = [
12 installShellFiles
13 makeWrapper
14 ];
15 substitutions = {
16 hostNode = "${nodejs}/bin/node";
17 jq = "${jq}/bin/jq";
18 };
19} ./hook.sh