Files
tree-sitter-jhcl/shell.nix
Michael Hoffmann 28e327cd3f fix: precedence of unary operators and expressions
Signed-off-by: Michael Hoffmann <mhoffm@posteo.de>
2025-06-09 21:40:11 +02:00

18 lines
268 B
Nix

let
pkgs = import <nixpkgs> { };
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"
'';
}