mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
build(nix): add a way to override what grammars get built (#3141)
This commit is contained in:
parent
2f1d3d0899
commit
85a5df0391
2 changed files with 109 additions and 74 deletions
|
@ -4,6 +4,8 @@
|
|||
runCommandLocal,
|
||||
runCommandNoCC,
|
||||
yj,
|
||||
includeGrammarIf ? _: true,
|
||||
...
|
||||
}: let
|
||||
# HACK: nix < 2.6 has a bug in the toml parser, so we convert to JSON
|
||||
# before parsing
|
||||
|
@ -102,12 +104,13 @@
|
|||
runHook postFixup
|
||||
'';
|
||||
};
|
||||
grammarsToBuild = builtins.filter includeGrammarIf gitGrammars;
|
||||
builtGrammars =
|
||||
builtins.map (grammar: {
|
||||
inherit (grammar) name;
|
||||
artifact = buildGrammar grammar;
|
||||
})
|
||||
gitGrammars;
|
||||
grammarsToBuild;
|
||||
grammarLinks =
|
||||
builtins.map (grammar: "ln -s ${grammar.artifact}/${grammar.name}.so $out/${grammar.name}.so")
|
||||
builtGrammars;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue