Files
tree-sitter-nix-shell/shell.nix

12 lines
241 B
Nix

{ pkgs ? import <nixpkgs> { } }:
let
tree-sitter-nixshell = pkgs.callPackage ./. { };
in
pkgs.mkShell {
inherit (tree-sitter-nixshell) nativeBuildInputs;
# to manually build, once in this shell, just run
# `tree-sitter generate`
}