From 0cd6789214a689e029627395c9f910cab0b131b0 Mon Sep 17 00:00:00 2001 From: Dag Olav Prestegarden Date: Thu, 11 Jul 2019 13:04:55 +0200 Subject: [PATCH] Adding simple Nodejs 10 LTS recipe --- shell-recipes/node-10.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 shell-recipes/node-10.nix diff --git a/shell-recipes/node-10.nix b/shell-recipes/node-10.nix new file mode 100644 index 0000000..b29f710 --- /dev/null +++ b/shell-recipes/node-10.nix @@ -0,0 +1,12 @@ +with import {}; + +stdenv.mkDerivation { + name = "node"; + buildInputs = [ + nodejs-10_x + jq + ]; + shellHook = '' + alias scripts='jq ".scripts" package.json' + ''; +}