Skip to content

Commit 7dca34c

Browse files
committed
latexindent: add hooks.latexindent.settings.extraConfig option
Replace the hooks.latexindent.settings.flags option with hooks.latexindent.settings.extraConfig to support arbitrary upstream flags and allow users to override default values. Link: cachix#514
1 parent 06bb597 commit 7dca34c

File tree

1 file changed

+23
-8
lines changed

1 file changed

+23
-8
lines changed

modules/hooks.nix

+23-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let
33
inherit (config) hooks tools settings;
44
cfg = config;
5-
inherit (lib) flatten mapAttrs mapAttrsToList mkDefault mkOption mkRemovedOptionModule mkRenamedOptionModule types;
5+
inherit (lib) flatten mapAttrs mapAttrsToList mkDefault mkEnableOption mkOption mkRemovedOptionModule mkRenamedOptionModule types;
66

77
cargoManifestPathArg =
88
lib.optionalString
@@ -631,12 +631,17 @@ in
631631
type = types.submodule {
632632
imports = [ hookModule ];
633633
options.settings = {
634-
flags =
635-
mkOption {
636-
type = types.str;
637-
description = "Flags passed to latexindent. See available flags [here](https://latexindentpl.readthedocs.io/en/latest/sec-how-to-use.html#from-the-command-line)";
638-
default = "--local --silent --overwriteIfDifferent";
639-
};
634+
extraConfig = mkOption {
635+
type = types.attrs;
636+
description = "[latexindent command-line options](https://latexindentpl.readthedocs.io/en/latest/sec-how-to-use.html#from-the-command-line) converted through `lib.cli.toGNUCommandLine`.";
637+
default = { };
638+
639+
example = lib.literalExpression ''
640+
{
641+
yaml = "defaultIndent: ' '";
642+
}
643+
'';
644+
};
640645
};
641646
};
642647
};
@@ -2768,7 +2773,17 @@ lib.escapeShellArgs (lib.concatMap (ext: [ "--ghc-opt" "-X${ext}" ]) hooks.ormol
27682773
description = "Perl script to add indentation to LaTeX files.";
27692774
types = [ "file" "tex" ];
27702775
package = tools.latexindent;
2771-
entry = "${hooks.latexindent.package}/bin/latexindent ${hooks.latexindent.settings.flags}";
2776+
2777+
entry = "${hooks.latexindent.package}/bin/latexindent ${
2778+
lib.cli.toGNUCommandLineShell {} (
2779+
{
2780+
local = true;
2781+
overwriteIfDifferent = true;
2782+
silent = true;
2783+
}
2784+
// hooks.latexindent.settings.extraConfig
2785+
)
2786+
}";
27722787
};
27732788
lacheck =
27742789
let

0 commit comments

Comments
 (0)