add shell.nix to get dependencies easily

This commit is contained in:
Vineet K 2024-08-31 22:24:05 -04:00
parent 27b9d4c120
commit c0679b404d

6
shell.nix Normal file
View File

@ -0,0 +1,6 @@
with import <nixpkgs> {}; mkShellNoCC {
nativeBuildInputs = [
bmake
clang
];
}