provide nix shell

This commit is contained in:
wryk 2021-11-05 20:35:37 +01:00
parent bdb842f805
commit 8d84efeca0
1 changed files with 9 additions and 0 deletions

9
shell.nix Normal file
View File

@ -0,0 +1,9 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs; mkShell {
buildInputs = [
nodejs-14_x
python39
gnumake
gcc
];
}