2016-12-13 09:47:50 +01:00
|
|
|
{ stdenv, fetchurl, unzip, setJavaClassPath, freetype }:
|
2014-01-15 07:06:04 +01:00
|
|
|
let
|
2019-03-31 22:06:26 +02:00
|
|
|
jce-policies = fetchurl {
|
|
|
|
# Ugh, unversioned URLs... I hope this doesn't change often enough to cause pain before we move to a Darwin source build of OpenJDK!
|
|
|
|
url = "http://cdn.azul.com/zcek/bin/ZuluJCEPolicies.zip";
|
|
|
|
sha256 = "0nk7m0lgcbsvldq2wbfni2pzq8h818523z912i7v8hdcij5s48c0";
|
|
|
|
};
|
|
|
|
|
|
|
|
jdk = stdenv.mkDerivation rec {
|
2019-10-09 14:02:18 +02:00
|
|
|
name = "zulu13.28.11-ca-jdk13.0.1";
|
2009-10-02 14:12:23 +02:00
|
|
|
|
2014-01-15 07:06:04 +01:00
|
|
|
src = fetchurl {
|
2019-03-31 22:06:26 +02:00
|
|
|
url = "https://cdn.azul.com/zulu/bin/${name}-macosx_x64.tar.gz";
|
2019-10-09 14:02:18 +02:00
|
|
|
sha256 = "0j148gq7vwhda6y9sazy0qg6ka7milywrdhbvmd31a1xp303r37b";
|
2019-03-31 22:06:26 +02:00
|
|
|
curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/";
|
2014-01-15 07:06:04 +01:00
|
|
|
};
|
2009-10-02 14:12:23 +02:00
|
|
|
|
2016-12-13 09:47:50 +01:00
|
|
|
buildInputs = [ unzip freetype ];
|
2014-07-15 11:51:07 +02:00
|
|
|
|
2014-01-15 07:06:04 +01:00
|
|
|
installPhase = ''
|
2019-03-31 22:06:26 +02:00
|
|
|
mkdir -p $out
|
|
|
|
mv * $out
|
|
|
|
|
|
|
|
unzip ${jce-policies}
|
|
|
|
mv -f ZuluJCEPolicies/*.jar $out/lib/security/
|
2014-01-28 11:55:12 +01:00
|
|
|
|
|
|
|
# jni.h expects jni_md.h to be in the header search path.
|
|
|
|
ln -s $out/include/darwin/*_md.h $out/include/
|
2018-05-04 22:11:45 +02:00
|
|
|
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
|
|
install -D $out/LICENSE $out/share/zulu/LICENSE
|
|
|
|
rm $out/LICENSE
|
|
|
|
fi
|
2014-01-28 11:55:12 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
2019-03-31 22:06:26 +02:00
|
|
|
# Propagate the setJavaClassPath setup hook from the JDK so that
|
|
|
|
# any package that depends on the JDK has $CLASSPATH set up
|
2014-01-28 11:55:12 +01:00
|
|
|
# properly.
|
|
|
|
mkdir -p $out/nix-support
|
2017-11-17 19:26:21 +01:00
|
|
|
printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
|
2014-01-28 11:55:12 +01:00
|
|
|
|
2019-03-31 22:06:26 +02:00
|
|
|
install_name_tool -change /usr/X11/lib/libfreetype.6.dylib ${freetype}/lib/libfreetype.6.dylib $out/lib/libfontmanager.dylib
|
2016-12-13 09:47:50 +01:00
|
|
|
|
2014-01-28 11:55:12 +01:00
|
|
|
# Set JAVA_HOME automatically.
|
2014-07-16 18:22:52 +02:00
|
|
|
cat <<EOF >> $out/nix-support/setup-hook
|
2019-11-01 20:30:09 +01:00
|
|
|
if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out; fi
|
2014-01-28 11:55:12 +01:00
|
|
|
EOF
|
2014-01-15 07:06:04 +01:00
|
|
|
'';
|
2009-10-02 14:12:23 +02:00
|
|
|
|
2015-01-08 00:02:04 +01:00
|
|
|
passthru = {
|
|
|
|
home = jdk;
|
|
|
|
};
|
2009-10-02 14:12:23 +02:00
|
|
|
|
2019-08-31 18:09:19 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
2015-01-13 16:42:32 +01:00
|
|
|
|
2014-01-15 07:06:04 +01:00
|
|
|
};
|
|
|
|
in jdk
|