This commit is contained in:
Bruno BELANYI 2024-05-07 11:09:47 +00:00
parent e0b66e89f9
commit 6d228a0a32
8 changed files with 149 additions and 0 deletions

View file

@ -0,0 +1,18 @@
self: prev:
let
tree-sitter = prev.tree-sitter.override {
extraGrammars = {
tree-sitter-bp = {
src = self.fetchFromGitHub {
owner = "ambroisie";
repo = "tree-sitter-bp";
rev = "v0.4.0";
hash = "sha256-h9T8tfS2K85N9NLwYj6tu2MHPj4YyG/UBYoezfWuEyI=";
};
};
};
};
in
{
inherit (tree-sitter.passthru.builtGrammars) tree-sitter-bp;
}