nix-config/overlays/tree-sitter-bp/default.nix
2024-05-24 13:41:26 +00:00

18 lines
410 B
Nix

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;
}