9 lines
146 B
Nix
9 lines
146 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.tree-sitter.buildGrammar {
|
|
src = ./.;
|
|
version = "0.1.0";
|
|
language = "nixshell";
|
|
generate = true;
|
|
}
|