Merge pull request #131767 from figsoda/tree-sitter-comment

tree-sitter-comment: init at 2021-04-27

authored by Sandro and committed by GitHub 08026a22 4ebfd38b

+15
+1
pkgs/development/tools/parsing/tree-sitter/grammars/default.nix
··· 3 tree-sitter-bash = (builtins.fromJSON (builtins.readFile ./tree-sitter-bash.json)); 4 tree-sitter-c = (builtins.fromJSON (builtins.readFile ./tree-sitter-c.json)); 5 tree-sitter-c-sharp = (builtins.fromJSON (builtins.readFile ./tree-sitter-c-sharp.json)); 6 tree-sitter-cpp = (builtins.fromJSON (builtins.readFile ./tree-sitter-cpp.json)); 7 tree-sitter-css = (builtins.fromJSON (builtins.readFile ./tree-sitter-css.json)); 8 tree-sitter-embedded-template = (builtins.fromJSON (builtins.readFile ./tree-sitter-embedded-template.json));
··· 3 tree-sitter-bash = (builtins.fromJSON (builtins.readFile ./tree-sitter-bash.json)); 4 tree-sitter-c = (builtins.fromJSON (builtins.readFile ./tree-sitter-c.json)); 5 tree-sitter-c-sharp = (builtins.fromJSON (builtins.readFile ./tree-sitter-c-sharp.json)); 6 + tree-sitter-comment = (builtins.fromJSON (builtins.readFile ./tree-sitter-comment.json)); 7 tree-sitter-cpp = (builtins.fromJSON (builtins.readFile ./tree-sitter-cpp.json)); 8 tree-sitter-css = (builtins.fromJSON (builtins.readFile ./tree-sitter-css.json)); 9 tree-sitter-embedded-template = (builtins.fromJSON (builtins.readFile ./tree-sitter-embedded-template.json));
+10
pkgs/development/tools/parsing/tree-sitter/grammars/tree-sitter-comment.json
···
··· 1 + { 2 + "url": "https://github.com/stsewd/tree-sitter-comment", 3 + "rev": "894b61d68a31d93c33ed48dcc7f427174b440abe", 4 + "date": "2021-04-27T15:25:48-05:00", 5 + "path": "/nix/store/w0yz9imzi33glwk6ilm0jqipcyzl8hgm-tree-sitter-comment", 6 + "sha256": "1vfayzzcv6lj63pgcxr8f7rcd81jkgnfdlmhs39i7w3m0s6dv1qg", 7 + "fetchSubmodules": false, 8 + "deepClone": false, 9 + "leaveDotGit": false 10 + }
+4
pkgs/development/tools/parsing/tree-sitter/update.nix
··· 70 # If you need a grammar that already exists in the official orga, 71 # make sure to give it a different name. 72 otherGrammars = { 73 "tree-sitter-nix" = { 74 orga = "cstrahan"; 75 repo = "tree-sitter-nix";
··· 70 # If you need a grammar that already exists in the official orga, 71 # make sure to give it a different name. 72 otherGrammars = { 73 + "tree-sitter-comment" = { 74 + orga = "stsewd"; 75 + repo = "tree-sitter-comment"; 76 + }; 77 "tree-sitter-nix" = { 78 orga = "cstrahan"; 79 repo = "tree-sitter-nix";