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

84 lines
2.8 KiB
Nix
Raw Normal View History

2013-09-28 13:52:01 +02:00
{ stdenv, fetchurl, unzip, jdk, makeWrapper }:
2015-11-22 10:46:10 +01:00
rec {
2016-11-16 00:38:48 +01:00
gradleGen = {name, src, nativeVersion} : stdenv.mkDerivation rec {
inherit name src nativeVersion;
dontBuild = true;
2015-11-22 10:46:10 +01:00
installPhase = ''
mkdir -pv $out/lib/gradle/
cp -rv lib/ $out/lib/gradle/
2015-12-17 18:38:29 +01:00
gradle_launcher_jar=$(echo $out/lib/gradle/lib/gradle-launcher-*.jar)
2015-11-22 10:46:10 +01:00
test -f $gradle_launcher_jar
makeWrapper ${jdk}/bin/java $out/bin/gradle \
--set JAVA_HOME ${jdk} \
--add-flags "-classpath $gradle_launcher_jar org.gradle.launcher.GradleMain"
'';
2015-11-22 10:46:10 +01:00
fixupPhase = if (!stdenv.isLinux) then ":" else
let arch = if stdenv.is64bit then "amd64" else "i386"; in ''
mkdir patching
pushd patching
2016-11-16 00:38:48 +01: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-16 00:38:48 +01: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 10:46:10 +01:00
buildInputs = [ unzip jdk makeWrapper ];
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 = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.unix;
2015-11-22 10:46:10 +01:00
};
};
2016-08-16 02:03:18 +02:00
gradle_latest = gradleGen rec {
2017-01-03 23:38:01 +01:00
name = "gradle-3.3";
nativeVersion = "0.12";
2016-08-16 02:03:18 +02:00
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
2017-01-03 23:38:01 +01:00
sha256 = "14m2m5f5s2cpp6w0x3lkq6lyx5cd7jp0hldnrab0dkyqg31511n5";
2016-08-16 02:03:18 +02:00
};
};
gradle_2_14 = gradleGen rec {
2016-07-19 17:10:54 +02:00
name = "gradle-2.14.1";
2016-11-16 00:38:48 +01:00
nativeVersion = "0.10";
2015-11-22 10:46:10 +01:00
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
2016-07-19 17:10:54 +02:00
sha256 = "0fggjxpsnakdaviw7bn2jmsl06997phlqr1251bjmlgjf7d1xing";
2015-11-22 10:46:10 +01:00
};
};
2016-08-16 02:03:18 +02:00
gradle_2_5 = gradleGen rec {
2015-11-22 10:46:10 +01:00
name = "gradle-2.5";
2016-11-16 00:38:48 +01:00
nativeVersion = "0.10";
2015-11-22 10:46:10 +01:00
src = fetchurl {
url = "http://services.gradle.org/distributions/${name}-bin.zip";
sha256 = "0mc5lf6phkncx77r0papzmfvyiqm0y26x50ipvmzkcsbn463x59z";
};
};
}