--- /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 <nixpkgs> }:
+# pkgs.mkShell {
+# # nativeBuildInputs is usually what you want -- tools you need to run
+# nativeBuildInputs = [ pkgs.nodejs ];
+#}
+with import <nixpkgs> {};
+
+stdenv.mkDerivation {
+ name = "node";
+ buildInputs = [
+ jq
+ nodejs
+ python3
+ mercurial
+ ];
+ shellHook = ''
+ export PATH="$PWD/node_modules/.bin/:$PATH"
+ alias scripts='jq ".scripts" package.json'
+ '';
+}