nixpkgs/pkgs/development/tools/build-managers/gradle/default.nix

87 lines
2.9 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, unzip, jdk, java ? jdk, makeWrapper }:
2015-11-22 09:46:10 +00:00
rec {
2019-08-13 21:52:01 +00:00
gradleGen = {name, src, nativeVersion} : stdenv.mkDerivation {
2016-11-15 23:38:48 +00:00
inherit name src nativeVersion;
dontBuild = true;
2015-11-22 09:46:10 +00:00
installPhase = ''
mkdir -pv $out/lib/gradle/
cp -rv lib/ $out/lib/gradle/
2015-12-17 17:38:29 +00:00
gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar)
2015-11-22 09:46:10 +00:00
test -f $gradle_launcher_jar
2019-08-01 13:04:14 +00:00
makeWrapper ${java}/bin/java $out/bin/gradle \
--set JAVA_HOME ${java} \
2015-11-22 09:46:10 +00:00
--add-flags "-classpath $gradle_launcher_jar org.gradle.launcher.GradleMain"
'';
2015-11-22 09:46:10 +00:00
fixupPhase = if (!stdenv.isLinux) then ":" else
let arch = if stdenv.is64bit then "amd64" else "i386"; in ''
mkdir patching
pushd patching
2016-11-15 23:38:48 +00:00
jar xf $out/lib/gradle/lib/native-platform-linux-${arch}-${nativeVersion}.jar
patchelf --set-rpath "${stdenv.cc.cc.lib}/lib:${stdenv.cc.cc.lib}/lib64" net/rubygrapefruit/platform/linux-${arch}/libnative-platform.so
2016-11-15 23:38:48 +00:00
jar cf native-platform-linux-${arch}-${nativeVersion}.jar .
mv native-platform-linux-${arch}-${nativeVersion}.jar $out/lib/gradle/lib/
popd
# 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
'';
2015-11-22 09:46:10 +00:00
nativeBuildInputs = [ makeWrapper unzip ];
buildInputs = [ java ];
2015-11-22 09:46:10 +00:00
meta = {
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 = "http://www.gradle.org/";
license = lib.licenses.asl20;
platforms = lib.platforms.unix;
2015-11-22 09:46:10 +00:00
};
};
2021-01-30 13:15:56 +00:00
gradle_latest = gradle_6_8;
2021-01-30 13:15:56 +00:00
gradle_6_8 = gradleGen rec {
name = "gradle-6.8.1";
nativeVersion = "0.22-milestone-9";
src = fetchurl {
url = "https://services.gradle.org/distributions/${name}-bin.zip";
2021-01-30 13:15:56 +00:00
sha256 = "1zfn7400k39qbiidd5zxay6v5f5xz8x4g7rrf04p71bkmws1lngx";
};
};
2019-08-01 13:04:14 +00:00
2019-08-30 02:36:35 +00:00
gradle_5_6 = gradleGen rec {
2019-12-30 17:33:21 +00:00
name = "gradle-5.6.4";
2019-08-30 02:36:35 +00:00
nativeVersion = "0.18";
2018-11-27 21:37:19 +00:00
src = fetchurl {
url = "https://services.gradle.org/distributions/${name}-bin.zip";
2019-12-30 17:33:21 +00:00
sha256 = "1f3067073041bc44554d0efe5d402a33bc3d3c93cc39ab684f308586d732a80d";
2018-11-27 21:37:19 +00:00
};
};
gradle_4_10 = gradleGen rec {
2019-04-01 18:59:17 +00:00
name = "gradle-4.10.3";
2017-06-16 12:29:08 +00:00
nativeVersion = "0.14";
src = fetchurl {
url = "https://services.gradle.org/distributions/${name}-bin.zip";
2019-04-01 18:59:17 +00:00
sha256 = "0vhqxnk0yj3q9jam5w4kpia70i4h0q4pjxxqwynh3qml0vrcn9l6";
2017-06-16 12:29:08 +00:00
};
};
}