9 lines
166 B
Nix
9 lines
166 B
Nix
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation {
|
||
|
name = "node";
|
||
|
buildInputs = [ nodejs ];
|
||
|
shellHook = ''
|
||
|
export PATH="$PWD/node_modules/.bin/:$PATH"
|
||
|
'';
|
||
|
}
|