tree-sitter: fix src value

This commit is contained in:
Gabriel Volpe 2023-02-13 12:31:15 +01:00
parent 3ea51a72e4
commit eed1326592
No known key found for this signature in database
GPG Key ID: 121D4302A64B2261

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;