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' + ''; +}