matrix-wug/shell.nix

9 lines
171 B
Nix
Raw Normal View History

2019-02-25 21:20:43 +01:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
2019-02-27 14:42:43 +01:00
buildInputs = [ nodejs-10_x ];
2019-02-25 21:20:43 +01:00
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}