nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

Merge pull request #330326 from qwqawawow/add-treesitter-bqn

tree-sitter-grammars: add bqn

authored by

Sandro and committed by
GitHub
2bba36f6 d3a7ab35

+28
+11
pkgs/applications/editors/vim/plugins/nvim-treesitter/generated.nix
··· 191 191 }; 192 192 meta.homepage = "https://github.com/ambroisie/tree-sitter-bp"; 193 193 }; 194 + bqn = buildGrammar { 195 + language = "bpn"; 196 + version = "0.0.0+rev=8c62b74"; 197 + src = fetchFromGitHub { 198 + owner = "shnarazk"; 199 + repo = "tree-sitter-bqn"; 200 + rev = "8c62b746924398304c8fa1aa18393c3124d1e50d"; 201 + hash = "sha256-jK0zn7DWzy2yfYOX1ZBoGOC7QBrcp4PHWnaOKaDL9ws="; 202 + }; 203 + meta.homepage = "https://github.com/shnarazk/tree-sitter-bqn"; 204 + }; 194 205 c = buildGrammar { 195 206 language = "c"; 196 207 version = "0.0.0+rev=be23d2c";
+1
pkgs/development/tools/parsing/tree-sitter/grammars/default.nix
··· 4 4 tree-sitter-beancount = lib.importJSON ./tree-sitter-beancount.json; 5 5 tree-sitter-bibtex = lib.importJSON ./tree-sitter-bibtex.json; 6 6 tree-sitter-bitbake = lib.importJSON ./tree-sitter-bitbake.json; 7 + tree-sitter-bqn = lib.importJSON ./tree-sitter-bqn.json; 7 8 tree-sitter-c = lib.importJSON ./tree-sitter-c.json; 8 9 tree-sitter-c-sharp = lib.importJSON ./tree-sitter-c-sharp.json; 9 10 tree-sitter-clojure = lib.importJSON ./tree-sitter-clojure.json;
+12
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-bqn.json
··· 1 + { 2 + "url": "https://github.com/shnarazk/tree-sitter-bqn", 3 + "rev": "a90b371503f158699042423918e4c5e9285f5519", 4 + "date": "2023-10-12T14:03:08+09:00", 5 + "path": "/nix/store/l8jagwjzgm9kwgda2rqgkzxpszlmf6br-tree-sitter-bqn", 6 + "sha256": "0xma9dmz591xfy20g7sk535d5w21migs9zajjw2nd1c5czj00nzw", 7 + "hash": "sha256-/FsA5GeFhWYFl1L9pF+sQfDSyihTnweEdz2k8mtLqnY=", 8 + "fetchLFS": false, 9 + "fetchSubmodules": false, 10 + "deepClone": false, 11 + "leaveDotGit": false 12 + }
+4
pkgs/development/tools/parsing/tree-sitter/update.nix
··· 102 102 orga = "polarmutex"; 103 103 repo = "tree-sitter-beancount"; 104 104 }; 105 + "tree-sitter-bqn" = { 106 + orga = "shnarazk"; 107 + repo = "tree-sitter-bqn"; 108 + }; 105 109 "tree-sitter-clojure" = { 106 110 orga = "sogaiu"; 107 111 repo = "tree-sitter-clojure";