2021-05-27 09:18:42 +01:00
|
|
|
{ lib, stdenv, fetchurl, unzip, setJavaClassPath }:
|
2014-01-15 06:06:04 +00:00
|
|
|
let
|
2021-10-28 19:46:09 +01:00
|
|
|
# Details from https://www.azul.com/downloads/?version=java-17-lts&os=macos&package=jdk
|
2021-05-27 09:18:42 +01:00
|
|
|
# Note that the latest build may differ by platform
|
|
|
|
dist = {
|
|
|
|
x86_64-darwin = {
|
|
|
|
arch = "x64";
|
2022-05-20 10:14:06 +01:00
|
|
|
zuluVersion = "17.34.19";
|
|
|
|
jdkVersion = "17.0.3";
|
|
|
|
sha256 = "sha256-qImyxVC2y2QhxuVZwamKPyo46+n+7ytIFXpYI0e6w2c=";
|
2021-05-27 09:18:42 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
aarch64-darwin = {
|
|
|
|
arch = "aarch64";
|
2022-05-20 10:14:06 +01:00
|
|
|
zuluVersion = "17.34.19";
|
|
|
|
jdkVersion = "17.0.3";
|
|
|
|
sha256 = "sha256-eaRX8Qa/Mqr9JhpHSEcf0Q9c4qmqLMgWqRhkEEwAjf8=";
|
2021-05-27 09:18:42 +01:00
|
|
|
};
|
|
|
|
}."${stdenv.hostPlatform.system}";
|
|
|
|
|
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!
|
2021-10-28 19:46:09 +01:00
|
|
|
url = "http://cdn.azul.com/zcek/bin/ZuluJCEPolicies.zip";
|
2019-03-31 21:06:26 +01:00
|
|
|
sha256 = "0nk7m0lgcbsvldq2wbfni2pzq8h818523z912i7v8hdcij5s48c0";
|
|
|
|
};
|
|
|
|
|
|
|
|
jdk = stdenv.mkDerivation rec {
|
2021-05-27 09:18:42 +01:00
|
|
|
pname = "zulu${dist.zuluVersion}-ca-jdk";
|
|
|
|
version = dist.jdkVersion;
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2014-01-15 06:06:04 +00:00
|
|
|
src = fetchurl {
|
2021-05-27 09:18:42 +01:00
|
|
|
url = "https://cdn.azul.com/zulu/bin/zulu${dist.zuluVersion}-ca-jdk${dist.jdkVersion}-macosx_${dist.arch}.tar.gz";
|
|
|
|
inherit (dist) sha256;
|
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
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
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
|
|
|
|
|
|
|
# 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
|
|
|
|
2021-08-19 01:14:04 +01:00
|
|
|
# fixupPhase is moving the man to share/man which breaks it because it's a
|
|
|
|
# relative symlink.
|
|
|
|
postFixup = ''
|
|
|
|
ln -nsf ../zulu-${lib.versions.major version}.jdk/Contents/Home/man $out/share/man
|
|
|
|
'';
|
|
|
|
|
2015-01-07 23:02:04 +00:00
|
|
|
passthru = {
|
|
|
|
home = jdk;
|
|
|
|
};
|
2009-10-02 13:12:23 +01:00
|
|
|
|
2022-04-29 00:00:57 +01:00
|
|
|
meta = import ./meta.nix lib version;
|
2014-01-15 06:06:04 +00:00
|
|
|
};
|
2021-10-28 19:46:09 +01:00
|
|
|
in
|
|
|
|
jdk
|