Files
tree-sitter-jhcl/shell.nix
2023-04-07 12:17:28 +02:00

13 lines
148 B
Nix

let
pkgs = import <nixpkgs> { };
in
pkgs.mkShell {
name = "env";
buildInputs = with pkgs; [
nodejs
tree-sitter
emscripten
];
}