Update nix-shell to node-10

This commit is contained in:
Daniel Løvbrøtte Olsen 2019-02-27 14:42:43 +01:00
parent e54be5da02
commit f4a1354eaa
1 changed files with 1 additions and 1 deletions

View File

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