This website requires JavaScript.
Explore
Help
Sign In
public
/
nixpkgs
Watch
1
Star
0
Fork
You've already forked nixpkgs
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
ae8eb54c8b
nixpkgs
/
pkgs
/
development
/
web
/
nodejs
/
setup-hook.sh
6 lines
94 B
Bash
Raw
Normal View
History
Unescape
Escape
Added setup hook that adds a Node package automatically to NODE_PATH, if included in the buildInputs parameter
2013-02-04 06:21:33 -08:00
addNodePath
(
)
{
Make the setup-hook work again now that nodejs modules reside in lib/node_modules
2013-07-30 04:00:05 -07:00
addToSearchPath NODE_PATH
$1
/lib/node_modules
Added setup hook that adds a Node package automatically to NODE_PATH, if included in the buildInputs parameter
2013-02-04 06:21:33 -08:00
}
Cleanup: Use += to append to envHooks
2014-07-08 05:20:05 -07:00
envHooks
+=
(
addNodePath
)