Files
tree-sitter-jhcl/shell.nix

15 lines
169 B
Nix
Raw Normal View History

2021-06-07 20:50:00 +02:00
let
pkgs = import <nixpkgs> { };
2021-06-07 20:50:00 +02:00
in
pkgs.mkShell {
name = "env";
buildInputs = with pkgs; [
gdb
valgrind
nodejs
tree-sitter
emscripten
];
}
2021-06-13 14:27:31 +02:00