Files
tree-sitter-jhcl/shell.nix

18 lines
268 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
emscripten
];
shellHook = ''
npm install
export PATH="$(git rev-parse --show-toplevel)/node_modules/.bin:$PATH"
'';
}
2021-06-13 14:27:31 +02:00