2017-01-07 19:16:26 +01:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.programs.eclipse;
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2017-09-26 23:40:31 +02:00
|
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
|
2017-01-07 19:16:26 +01:00
|
|
|
options = {
|
|
|
|
programs.eclipse = {
|
|
|
|
enable = mkEnableOption "Eclipse";
|
|
|
|
|
|
|
|
jvmArgs = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [];
|
|
|
|
description = "JVM arguments to use for the Eclipse process.";
|
|
|
|
};
|
|
|
|
|
|
|
|
plugins = mkOption {
|
|
|
|
type = types.listOf types.package;
|
|
|
|
default = [];
|
|
|
|
description = "Plugins that should be added to Eclipse.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.packages = [
|
|
|
|
(pkgs.eclipses.eclipseWithPlugins {
|
|
|
|
eclipse = pkgs.eclipses.eclipse-platform;
|
|
|
|
jvmArgs = cfg.jvmArgs;
|
|
|
|
plugins = cfg.plugins;
|
|
|
|
})
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|