initial commit

This commit is contained in:
mhoffm
2021-06-07 20:50:00 +02:00
parent 89c1b30cde
commit ba9acb912f
15 changed files with 2732 additions and 0 deletions

16
default.nix Normal file
View File

@@ -0,0 +1,16 @@
{ 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
'';
}