diff -r 2a447b707b65 -r f213403ee0c8 shell.nix --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/shell.nix Mon Feb 02 18:27:25 2026 +0100 @@ -0,0 +1,20 @@ +#{ pkgs ? import }: +# pkgs.mkShell { +# # nativeBuildInputs is usually what you want -- tools you need to run +# nativeBuildInputs = [ pkgs.nodejs ]; +#} +with import {}; + +stdenv.mkDerivation { + name = "node"; + buildInputs = [ + jq + nodejs + python3 + mercurial + ]; + shellHook = '' + export PATH="$PWD/node_modules/.bin/:$PATH" + alias scripts='jq ".scripts" package.json' + ''; +}