Files
tree-sitter-jhcl/default.nix
2021-06-07 20:50:00 +02:00

17 lines
305 B
Nix

{ nixpkgs ? import <nixpkgs> { } }:
let
pkgs = [
nixpkgs.nodejs
];
in
nixpkgs.stdenv.mkDerivation {
name = "env";
buildInputs = pkgs;
shellHook = ''
PATH=./node_modules/.bin:$PATH
command -v tree-sitter >/dev/null 2>&1 || npm install tree-sitter-cli
'';
}