home-manager/modules/programs/eclipse.nix

61 lines
1.4 KiB
Nix
Raw Normal View History

2017-01-07 18:16:26 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.eclipse;
2020-02-01 23:39:17 +00:00
in {
meta.maintainers = [ maintainers.rycee ];
2017-01-07 18:16:26 +00:00
options = {
programs.eclipse = {
enable = mkEnableOption "Eclipse";
2020-06-08 00:35:28 +00:00
package = mkOption {
type = types.package;
default = pkgs.eclipses.eclipse-platform;
defaultText = literalExpression "pkgs.eclipses.eclipse-platform";
example = literalExpression "pkgs.eclipses.eclipse-java";
2020-06-08 00:35:28 +00:00
description = ''
The Eclipse package to install.
'';
};
2018-01-09 21:03:13 +00:00
enableLombok = mkOption {
type = types.bool;
default = false;
example = true;
description = ''
Whether to enable the Lombok Java Agent in Eclipse. This is
necessary to use the Lombok class annotations.
'';
};
2017-01-07 18:16:26 +00:00
jvmArgs = mkOption {
type = types.listOf types.str;
2020-02-01 23:39:17 +00:00
default = [ ];
2017-01-07 18:16:26 +00:00
description = "JVM arguments to use for the Eclipse process.";
};
plugins = mkOption {
type = types.listOf types.package;
2020-02-01 23:39:17 +00:00
default = [ ];
2017-01-07 18:16:26 +00:00
description = "Plugins that should be added to Eclipse.";
};
};
};
config = mkIf cfg.enable {
home.packages = [
(pkgs.eclipses.eclipseWithPlugins {
2020-06-08 00:35:28 +00:00
eclipse = cfg.package;
2020-02-01 23:39:17 +00:00
jvmArgs = cfg.jvmArgs ++ optional cfg.enableLombok
"-javaagent:${pkgs.lombok}/share/java/lombok.jar";
2017-01-07 18:16:26 +00:00
plugins = cfg.plugins;
})
];
};
}