2023-05-05 19:25:28 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.git-cliff;
|
|
|
|
tomlFormat = pkgs.formats.toml { };
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = [ hm.maintainers.NateCox ];
|
|
|
|
|
|
|
|
options.programs.git-cliff = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "git-cliff changelog generator";
|
2023-05-05 19:25:28 +02:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
package = mkPackageOption pkgs "git-cliff" { };
|
2023-05-05 19:25:28 +02:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = tomlFormat.type;
|
|
|
|
default = { };
|
|
|
|
example = literalExpression ''
|
|
|
|
{
|
|
|
|
header = "Changelog";
|
|
|
|
trim = true;
|
|
|
|
}
|
|
|
|
'';
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-05-05 19:25:28 +02:00
|
|
|
Configuration written to
|
2023-07-01 01:30:13 +02:00
|
|
|
{file}`$XDG_CONFIG_HOME/git-cliff/cliff.toml`. See
|
|
|
|
<https://git-cliff.org/docs/configuration>
|
2023-05-05 19:25:28 +02:00
|
|
|
for the documentation.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
xdg.configFile = {
|
|
|
|
"git-cliff/cliff.toml" = mkIf (cfg.settings != { }) {
|
|
|
|
source = tomlFormat.generate "git-cliff-config" cfg.settings;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|