2016-12-13 08:47:50 +00:00
|
|
|
{ stdenv, fetchurl, unzip, setJavaClassPath, freetype }:
|
2014-01-15 06:06:04 +00:00
|
|
|
let
|
2019-03-31 21:06:26 +01: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 {
|
2020-10-01 14:36:31 +01:00
|
|
|
name = "zulu15.28.51-ca-jdk15.0.1";
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2014-01-15 06:06:04 +00:00
|
|
|
src = fetchurl {
|
2019-03-31 21:06:26 +01:00
|
|
|
url = "https://cdn.azul.com/zulu/bin/${name}-macosx_x64.tar.gz";
|
2020-10-01 14:36:31 +01:00
|
|
|
sha256 = "0h738pbnwcn7pjp0qyryzazqj5nw5sy2f8l0ycl39crm9ia6akvh";
|
2019-03-31 21:06:26 +01:00
|
|
|
curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/";
|
2014-01-15 06:06:04 +00:00
|
|
|
};
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2016-12-13 08:47:50 +00:00
|
|
|
buildInputs = [ unzip freetype ];
|
2014-07-15 10:51:07 +01:00
|
|
|
|
2014-01-15 06:06:04 +00:00
|
|
|
installPhase = ''
|
2019-03-31 21:06:26 +01:00
|
|
|
mkdir -p $out
|
|
|
|
mv * $out
|
|
|
|
|
|
|
|
unzip ${jce-policies}
|
|
|
|
mv -f ZuluJCEPolicies/*.jar $out/lib/security/
|
2014-01-28 10:55:12 +00: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 21:11:45 +01:00
|
|
|
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
|
|
install -D $out/LICENSE $out/share/zulu/LICENSE
|
|
|
|
rm $out/LICENSE
|
|
|
|
fi
|
2014-01-28 10:55:12 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
2019-03-31 21:06:26 +01: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 10:55:12 +00:00
|
|
|
# properly.
|
|
|
|
mkdir -p $out/nix-support
|
2017-11-17 18:26:21 +00:00
|
|
|
printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
|
2014-01-28 10:55:12 +00:00
|
|
|
|
2019-03-31 21:06:26 +01:00
|
|
|
install_name_tool -change /usr/X11/lib/libfreetype.6.dylib ${freetype}/lib/libfreetype.6.dylib $out/lib/libfontmanager.dylib
|
2016-12-13 08:47:50 +00:00
|
|
|
|
2014-01-28 10:55:12 +00:00
|
|
|
# Set JAVA_HOME automatically.
|
2014-07-16 17:22:52 +01:00
|
|
|
cat <<EOF >> $out/nix-support/setup-hook
|
2019-11-01 19:30:09 +00:00
|
|
|
if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out; fi
|
2014-01-28 10:55:12 +00:00
|
|
|
EOF
|
2014-01-15 06:06:04 +00:00
|
|
|
'';
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2015-01-07 23:02:04 +00:00
|
|
|
passthru = {
|
|
|
|
home = jdk;
|
|
|
|
};
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2019-08-31 17:09:19 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
2015-01-13 15:42:32 +00:00
|
|
|
|
2014-01-15 06:06:04 +00:00
|
|
|
};
|
|
|
|
in jdk
|