aboutsummaryrefslogtreecommitdiff
path: root/shell.nix
blob: d029880d624bd13e1a66906a6e8fb499b40aeeae (plain)
1
2
3
4
5
6
7
8
with (import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/release-23.11.tar.gz") {});

pkgs.mkShell {
	buildInputs = [
		nodejs_21
	];
}