add nix shell with dependencies (#12)

This commit is contained in:
Troy 2025-01-04 22:26:08 +00:00 committed by GitHub
parent cb06106438
commit fe60d3846f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 1 deletions

6
shell.nix Normal file
View file

@ -0,0 +1,6 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
nodejs
];
}