Files
to-hen/node/shell.nix
Kierán Meinhardt 84c9f6022d add nodejs version
2019-03-14 22:03:07 +01:00

8 lines
215 B
Nix

with import <nixpkgs> {};
stdenv.mkDerivation {
name = "bvg-node";
buildInputs = [ nodePackages.yarn nodePackages.typescript ];
shellHook = ''
export PATH=$PATH:$(pwd)/node_modules/.bin
'';
}