2021-06-04 09:07:49 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip, setJavaClassPath }:
|
2020-04-24 23:36:52 +00:00
|
|
|
let
|
2021-06-04 09:07:49 +00:00
|
|
|
# Details from https://www.azul.com/downloads/?version=java-11-lts&os=macos&package=jdk
|
|
|
|
# Note that the latest build may differ by platform
|
|
|
|
dist = {
|
|
|
|
x86_64-darwin = {
|
|
|
|
arch = "x64";
|
|
|
|
zuluVersion = "11.48.21";
|
|
|
|
jdkVersion = "11.0.11";
|
|
|
|
sha256 = "0v0n7h7i04pvna41wpdq2k9qiy70sbbqzqzvazfdvgm3gb22asw6";
|
|
|
|
};
|
|
|
|
|
|
|
|
aarch64-darwin = {
|
|
|
|
arch = "aarch64";
|
|
|
|
zuluVersion = "11.48.21";
|
|
|
|
jdkVersion = "11.0.11";
|
|
|
|
sha256 = "066whglrxx81c95grv2kxdbvyh32728ixhml2v44ildh549n4lhc";
|
|
|
|
};
|
|
|
|
}."${stdenv.hostPlatform.system}";
|
|
|
|
|
2020-04-24 23:36:52 +00: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 {
|
2021-06-04 09:07:49 +00:00
|
|
|
pname = "zulu${dist.zuluVersion}-ca-jdk";
|
|
|
|
version = dist.jdkVersion;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-06-04 09:07:49 +00:00
|
|
|
url = "https://cdn.azul.com/zulu/bin/zulu${dist.zuluVersion}-ca-jdk${dist.jdkVersion}-macosx_${dist.arch}.tar.gz";
|
|
|
|
inherit (dist) sha256;
|
|
|
|
curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-03-19 17:17:44 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
mv * $out
|
|
|
|
|
|
|
|
unzip ${jce-policies}
|
|
|
|
mv -f ZuluJCEPolicies/*.jar $out/lib/security/
|
|
|
|
|
|
|
|
# jni.h expects jni_md.h to be in the header search path.
|
|
|
|
ln -s $out/include/darwin/*_md.h $out/include/
|
|
|
|
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
|
|
install -D $out/LICENSE $out/share/zulu/LICENSE
|
|
|
|
rm $out/LICENSE
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
# Propagate the setJavaClassPath setup hook from the JDK so that
|
|
|
|
# any package that depends on the JDK has $CLASSPATH set up
|
|
|
|
# properly.
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
|
|
|
|
|
|
|
|
# Set JAVA_HOME automatically.
|
|
|
|
cat <<EOF >> $out/nix-support/setup-hook
|
|
|
|
if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out; fi
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
home = jdk;
|
|
|
|
};
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.darwin;
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
in jdk
|