2018-02-17 09:39:31 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.pidgin;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2018-02-17 09:39:31 +01:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
programs.pidgin = {
|
|
|
|
enable = mkEnableOption "Pidgin messaging client";
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.pidgin;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.pidgin";
|
2018-02-17 09:39:31 +01:00
|
|
|
description = "The Pidgin package to use.";
|
|
|
|
};
|
|
|
|
|
|
|
|
plugins = mkOption {
|
2020-02-02 00:39:17 +01:00
|
|
|
default = [ ];
|
2021-10-09 11:14:08 +02:00
|
|
|
example = literalExpression "[ pkgs.pidgin-otr pkgs.pidgin-osd ]";
|
2018-02-17 09:39:31 +01:00
|
|
|
description = "Plugins that should be available to Pidgin.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [ (cfg.package.override { inherit (cfg) plugins; }) ];
|
|
|
|
};
|
|
|
|
}
|