1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 21:17:46 +00:00
nixpkgs/pkgs/development/tools/build-managers/gradle/default.nix

86 lines
2.9 KiB
Nix
Raw Normal View History

2019-08-01 14:04:14 +01:00
{ stdenv, fetchurl, unzip, jdk, java ? jdk, makeWrapper }:
2015-11-22 09:46:10 +00:00
rec {
2019-08-13 22:52:01 +01: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 14:04:14 +01: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
2019-08-01 14:04:14 +01:00
buildInputs = [ unzip java makeWrapper ];
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/";
2015-11-22 09:46:10 +00:00
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.unix;
2015-11-22 09:46:10 +00:00
};
};
gradle_latest = gradle_6_5;
gradle_6_5 = gradleGen rec {
name = "gradle-6.5.1";
nativeVersion = "0.22-milestone-3";
src = fetchurl {
url = "https://services.gradle.org/distributions/${name}-bin.zip";
sha256 = "0jmmipjh4fbsn92zpifa5cqg5ws2a4ha0s4jzqhrg4zs542x79sh";
};
};
2019-08-01 14:04:14 +01:00
2019-08-30 03:36:35 +01:00
gradle_5_6 = gradleGen rec {
2019-12-30 17:33:21 +00:00
name = "gradle-5.6.4";
2019-08-30 03:36:35 +01: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 19:59:17 +01:00
name = "gradle-4.10.3";
2017-06-16 13:29:08 +01:00
nativeVersion = "0.14";
src = fetchurl {
url = "https://services.gradle.org/distributions/${name}-bin.zip";
2019-04-01 19:59:17 +01:00
sha256 = "0vhqxnk0yj3q9jam5w4kpia70i4h0q4pjxxqwynh3qml0vrcn9l6";
2017-06-16 13:29:08 +01:00
};
};
}