plugins/treesitter: add an option to control if gcc should be installed

This commit is contained in:
Gaetan Lepage 2024-01-03 17:25:20 +01:00 committed by Gaétan Lepage
parent 78276e91bb
commit 2785267b1b

View file

@ -30,6 +30,20 @@ in {
description = "Either \"all\" or a list of languages";
};
gccPackage = mkOption {
type = with types; nullOr package;
default =
if cfg.nixGrammars
then null
else pkgs.gcc;
example = null;
description = ''
Which package (if any) to be added as the GCC compiler.
This is required to build grammars if you are not using `nixGrammars`.
To disable the installation of GCC, set this option to `null`.
'';
};
parserInstallDir = mkOption {
type = types.nullOr types.str;
default =
@ -199,11 +213,12 @@ in {
if cfg.nixGrammars
then [(cfg.package.withPlugins (_: cfg.grammarPackages))]
else [cfg.package];
extraPackages = with pkgs; [
tree-sitter
nodejs
gcc
];
extraPackages = with pkgs;
[
tree-sitter
nodejs
]
++ optional (cfg.gccPackage != null) cfg.gccPackage;
options = mkIf cfg.folding {
foldmethod = "expr";