mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
c04d7170e0
As discussed in #jdk:nixos.org on Matrix, the maintainers of the Java ecosystem in Nixpkgs feel that a team for Java would be helpful.
244 lines
7.9 KiB
Nix
244 lines
7.9 KiB
Nix
{ jdk11, jdk17, jdk21 }:
|
||
|
||
rec {
|
||
gen =
|
||
|
||
{ version, hash,
|
||
|
||
# The default JDK/JRE that will be used for derived Gradle packages.
|
||
# A current LTS version of a JDK is a good choice.
|
||
defaultJava,
|
||
|
||
# The platforms supported by this Gradle package.
|
||
# Gradle Native-Platform ships some binaries that
|
||
# are compatible only with specific platforms.
|
||
# As of 2022-04 this affects platform compatibility
|
||
# of multiple Gradle releases, so this is used as default.
|
||
# See https://github.com/gradle/native-platform#supported-platforms
|
||
platforms ? [
|
||
"aarch64-darwin"
|
||
"aarch64-linux"
|
||
"i686-windows"
|
||
"x86_64-cygwin"
|
||
"x86_64-darwin"
|
||
"x86_64-linux"
|
||
"x86_64-windows"
|
||
],
|
||
|
||
# Extra attributes to be merged into the resulting derivation's
|
||
# meta attribute.
|
||
meta ? {}
|
||
}:
|
||
|
||
{ lib
|
||
, stdenv
|
||
, fetchurl
|
||
, makeWrapper
|
||
, unzip
|
||
, ncurses5
|
||
, ncurses6
|
||
, testers
|
||
, runCommand
|
||
, writeText
|
||
, autoPatchelfHook
|
||
|
||
# The JDK/JRE used for running Gradle.
|
||
, java ? defaultJava
|
||
|
||
# Additional JDK/JREs to be registered as toolchains.
|
||
# See https://docs.gradle.org/current/userguide/toolchains.html
|
||
, javaToolchains ? [ ]
|
||
}:
|
||
|
||
stdenv.mkDerivation (finalAttrs: {
|
||
pname = "gradle";
|
||
inherit version;
|
||
|
||
src = fetchurl {
|
||
inherit hash;
|
||
url =
|
||
"https://services.gradle.org/distributions/gradle-${version}-bin.zip";
|
||
};
|
||
|
||
dontBuild = true;
|
||
|
||
nativeBuildInputs = [
|
||
makeWrapper
|
||
unzip
|
||
] ++ lib.optionals stdenv.hostPlatform.isLinux [
|
||
autoPatchelfHook
|
||
];
|
||
|
||
buildInputs = [
|
||
java
|
||
stdenv.cc.cc
|
||
ncurses5
|
||
ncurses6
|
||
];
|
||
|
||
# We only need to patchelf some libs embedded in JARs.
|
||
dontAutoPatchelf = true;
|
||
|
||
installPhase = with builtins;
|
||
let
|
||
toolchain = rec {
|
||
prefix = x: "JAVA_TOOLCHAIN_NIX_${toString x}";
|
||
varDefs = (lib.imap0 (i: x: "${prefix i} ${x}") javaToolchains);
|
||
varNames = lib.imap0 (i: x: prefix i) javaToolchains;
|
||
property = " -Porg.gradle.java.installations.fromEnv='${
|
||
concatStringsSep "," varNames
|
||
}'";
|
||
};
|
||
varDefs = concatStringsSep "\n" (map (x: " --set ${x} \\")
|
||
([ "JAVA_HOME ${java}" ] ++ toolchain.varDefs));
|
||
in ''
|
||
mkdir -pv $out/lib/gradle/
|
||
cp -rv lib/ $out/lib/gradle/
|
||
|
||
gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar)
|
||
test -f $gradle_launcher_jar
|
||
makeWrapper ${java}/bin/java $out/bin/gradle \
|
||
${varDefs}
|
||
--add-flags "-classpath $gradle_launcher_jar org.gradle.launcher.GradleMain${toolchain.property}"
|
||
'';
|
||
|
||
dontFixup = !stdenv.hostPlatform.isLinux;
|
||
|
||
fixupPhase = let arch = if stdenv.hostPlatform.is64bit then "amd64" else "i386";
|
||
in ''
|
||
. ${./patching.sh}
|
||
|
||
nativeVersion="$(extractVersion native-platform $out/lib/gradle/lib/native-platform-*.jar)"
|
||
for variant in "" "-ncurses5" "-ncurses6"; do
|
||
autoPatchelfInJar \
|
||
$out/lib/gradle/lib/native-platform-linux-${arch}$variant-''${nativeVersion}.jar \
|
||
"${lib.getLib stdenv.cc.cc}/lib64:${lib.makeLibraryPath [ stdenv.cc.cc ncurses5 ncurses6 ]}"
|
||
done
|
||
|
||
# The file-events library _seems_ to follow the native-platform version, but
|
||
# we won’t assume that.
|
||
fileEventsVersion="$(extractVersion file-events $out/lib/gradle/lib/file-events-*.jar)"
|
||
autoPatchelfInJar \
|
||
$out/lib/gradle/lib/file-events-linux-${arch}-''${fileEventsVersion}.jar \
|
||
"${lib.getLib stdenv.cc.cc}/lib64:${lib.makeLibraryPath [ stdenv.cc.cc ]}"
|
||
|
||
# The scanner doesn't pick up the runtime dependency in the jar.
|
||
# Manually add a reference where it will be found.
|
||
mkdir $out/nix-support
|
||
echo ${stdenv.cc.cc} > $out/nix-support/manual-runtime-dependencies
|
||
# Gradle will refuse to start without _both_ 5 and 6 versions of ncurses.
|
||
echo ${ncurses5} >> $out/nix-support/manual-runtime-dependencies
|
||
echo ${ncurses6} >> $out/nix-support/manual-runtime-dependencies
|
||
'';
|
||
|
||
passthru.tests = {
|
||
version = testers.testVersion {
|
||
package = finalAttrs.finalPackage;
|
||
command = ''
|
||
env GRADLE_USER_HOME=$TMPDIR/gradle org.gradle.native.dir=$TMPDIR/native \
|
||
gradle --version
|
||
'';
|
||
};
|
||
|
||
java-application = testers.testEqualContents {
|
||
assertion = "can build and run a trivial Java application";
|
||
expected = writeText "expected" "hello\n";
|
||
actual = runCommand "actual" {
|
||
nativeBuildInputs = [ finalAttrs.finalPackage ];
|
||
src = ./tests/java-application;
|
||
} ''
|
||
cp -a $src/* .
|
||
env GRADLE_USER_HOME=$TMPDIR/gradle org.gradle.native.dir=$TMPDIR/native \
|
||
gradle run --no-daemon --quiet --console plain > $out
|
||
'';
|
||
};
|
||
};
|
||
passthru.jdk = defaultJava;
|
||
|
||
meta = with lib; {
|
||
inherit platforms;
|
||
description = "Enterprise-grade build system";
|
||
longDescription = ''
|
||
Gradle is a build system which offers you ease, power and freedom.
|
||
You can choose the balance for yourself. It has powerful multi-project
|
||
build support. It has a layer on top of Ivy that provides a
|
||
build-by-convention integration for Ivy. It gives you always the choice
|
||
between the flexibility of Ant and the convenience of a
|
||
build-by-convention behavior.
|
||
'';
|
||
homepage = "https://www.gradle.org/";
|
||
changelog = "https://docs.gradle.org/${version}/release-notes.html";
|
||
downloadPage = "https://gradle.org/next-steps/?version=${version}";
|
||
sourceProvenance = with sourceTypes; [
|
||
binaryBytecode
|
||
binaryNativeCode
|
||
];
|
||
license = licenses.asl20;
|
||
maintainers = with maintainers; [ lorenzleutgeb liff ] ++ lib.teams.java.members;
|
||
mainProgram = "gradle";
|
||
} // meta;
|
||
});
|
||
|
||
# NOTE: Default JDKs that are hardcoded below must be LTS versions
|
||
# and respect the compatibility matrix at
|
||
# https://docs.gradle.org/current/userguide/compatibility.html
|
||
|
||
gradle_8 = gen {
|
||
version = "8.10.2";
|
||
hash = "sha256-McVXE+QCM6gwOCfOtCykikcmegrUurkXcSMSHnFSTCY=";
|
||
defaultJava = jdk21;
|
||
};
|
||
|
||
gradle_7 = gen {
|
||
version = "7.6.4";
|
||
hash = "sha256-vtHaM8yg9VerE2kcd/OLtnOIEZ5HlNET4FEDm4Cvm7E=";
|
||
defaultJava = jdk17;
|
||
};
|
||
|
||
wrapGradle = {
|
||
lib, callPackage, mitm-cache, substituteAll, symlinkJoin, concatTextFile, makeSetupHook, nix-update-script
|
||
}:
|
||
gradle-unwrapped:
|
||
updateAttrPath:
|
||
lib.makeOverridable (args:
|
||
let
|
||
gradle = gradle-unwrapped.override args;
|
||
in symlinkJoin {
|
||
name = "gradle-${gradle.version}";
|
||
|
||
paths = [
|
||
(makeSetupHook { name = "gradle-setup-hook"; } (concatTextFile {
|
||
name = "setup-hook.sh";
|
||
files = [
|
||
(mitm-cache.setupHook)
|
||
(substituteAll {
|
||
src = ./setup-hook.sh;
|
||
# jdk used for keytool
|
||
inherit (gradle) jdk;
|
||
init_script = ./init-build.gradle;
|
||
})
|
||
];
|
||
}))
|
||
gradle
|
||
mitm-cache
|
||
];
|
||
|
||
passthru = {
|
||
fetchDeps = callPackage ./fetch-deps.nix { inherit mitm-cache; };
|
||
inherit (gradle) jdk tests;
|
||
unwrapped = gradle;
|
||
} // lib.optionalAttrs (updateAttrPath != null) {
|
||
updateScript = nix-update-script {
|
||
attrPath = updateAttrPath;
|
||
extraArgs = [ "--url=https://github.com/gradle/gradle" ];
|
||
};
|
||
};
|
||
|
||
meta = gradle.meta // {
|
||
# prefer normal gradle/mitm-cache over this wrapper, this wrapper only provides the setup hook
|
||
# and passthru
|
||
priority = (gradle.meta.priority or lib.meta.defaultPriority) + 1;
|
||
};
|
||
}) { };
|
||
}
|