Merge pull request #216154 from gvolpe/tree-sitter/fix-src-value

tree-sitter: fix src value
This commit is contained in:
Anderson Torres 2023-02-13 11:32:21 -03:00 committed by GitHub
commit 6413468c36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ let
buildGrammar {
language = grammar.language or name;
inherit version;
src = grammar.src or fetchGrammar grammar;
src = grammar.src or (fetchGrammar grammar);
location = grammar.location or null;
};
grammars' = import ./grammars { inherit lib; } // extraGrammars;