matrix-wug/shell.nix

9 lines
176 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "node";
buildInputs = [ nodejs-10_x yarn ];
shellHook = ''
export PATH="$PWD/node_modules/.bin/:$PATH"
'';
}