1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00
home-manager/modules/programs/gradle.nix
Austin Horstman 86402a17b6 treewide: flatten single file modules
Some files don't need nesting and can be root level again to reduce
conflicts with other PRs.

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2025-06-23 16:20:26 -05:00

133 lines
3.4 KiB
Nix

{
config,
pkgs,
lib,
...
}:
let
inherit (lib) mkIf mkOption types;
cfg = config.programs.gradle;
defaultHomeDirectory = ".gradle";
settingsFormat = pkgs.formats.javaProperties { };
initScript = types.submodule (
{ name, config, ... }:
{
options = {
text = mkOption {
type = types.nullOr types.lines;
default = null;
description = ''
Text of the init script file. if this option is null
then `source` must be set.
'';
};
source = mkOption {
type = types.path;
description = ''
Path of the init script file. If
`text` is non-null then this option will automatically point
to a file containing that text.
'';
};
};
config.source = mkIf (config.text != null) (
lib.mkDefault (
pkgs.writeTextFile {
inherit (config) text;
name = lib.hm.strings.storeFileName name;
}
)
);
}
);
in
{
meta.maintainers = [ lib.hm.maintainers.britter ];
options.programs.gradle = {
enable = lib.mkEnableOption "Gradle Build Tool";
home = mkOption {
type = types.str;
default = defaultHomeDirectory;
description = ''
The Gradle home directory, relative to [](#opt-home.homeDirectory).
If set, the {env}`GRADLE_USER_HOME` environment variable will be
set accordingly. Defaults to {file}`.gradle`.
'';
};
package = lib.mkPackageOption pkgs "gradle" {
nullable = true;
example = "pkgs.gradle_7";
};
settings = mkOption {
type = types.submodule { freeformType = settingsFormat.type; };
default = { };
example = lib.literalExpression ''
{
"org.gradle.caching" = true;
"org.gradle.parallel" = true;
"org.gradle.jvmargs" = "-XX:MaxMetaspaceSize=384m";
"org.gradle.home" = pkgs.jdk17;
};
'';
description = ''
Key value pairs to write to {file}`gradle.properties` in the Gradle
home directory.
'';
};
initScripts = mkOption {
type = with types; attrsOf initScript;
default = { };
example = lib.literalExpression ''
{
"maven-local.gradle".text = '''
allProject {
repositories {
mavenLocal()
}
}
''';
"another.init.gradle.kts".source = ./another.init.gradle.kts;
}
'';
description = ''
Definition of init scripts to link into the Gradle home directory.
For more information about init scripts, including naming conventions
see https://docs.gradle.org/current/userguide/init_scripts.html.
'';
};
};
config =
let
gradleHome = "${config.home.homeDirectory}/${cfg.home}";
in
mkIf cfg.enable {
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
home.file = lib.mkMerge (
[
{
"${cfg.home}/gradle.properties" = mkIf (cfg.settings != { }) {
source = settingsFormat.generate "gradle.properties" cfg.settings;
};
}
]
++ lib.mapAttrsToList (k: v: { "${cfg.home}/init.d/${k}".source = v.source; }) cfg.initScripts
);
home.sessionVariables = mkIf (cfg.home != defaultHomeDirectory) {
GRADLE_USER_HOME = gradleHome;
};
};
}