From f4a1354eaa04ef8cd4771da675aa495f8e1b3ca9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Wed, 27 Feb 2019 14:42:43 +0100 Subject: [PATCH] Update nix-shell to node-10 --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index d8ae26e..127c52e 100644 --- a/shell.nix +++ b/shell.nix @@ -1,7 +1,7 @@ with import {}; stdenv.mkDerivation { name = "node"; - buildInputs = [ nodejs ]; + buildInputs = [ nodejs-10_x ]; shellHook = '' export PATH="$PWD/node_modules/.bin/:$PATH" '';