2021-05-27 08:13:36 +00:00
|
|
|
{ lib, stdenv, fetchurl, unzip, setJavaClassPath }:
|
2016-01-14 10:28:16 +00:00
|
|
|
let
|
2021-05-27 08:13:36 +00:00
|
|
|
# Details from https://www.azul.com/downloads/?version=java-8-lts&os=macos&package=jdk
|
|
|
|
# Note that the latest build may differ by platform
|
|
|
|
dist = {
|
|
|
|
x86_64-darwin = {
|
|
|
|
arch = "x64";
|
|
|
|
zuluVersion = "8.54.0.21";
|
|
|
|
jdkVersion = "8.0.292";
|
|
|
|
sha256 = "1pgl0bir4r5v349gkxk54k6v62w241q7vw4gjxhv2g6pfq6hv7in";
|
|
|
|
};
|
|
|
|
|
|
|
|
aarch64-darwin = {
|
|
|
|
arch = "aarch64";
|
|
|
|
zuluVersion = "8.54.0.21";
|
|
|
|
jdkVersion = "8.0.292";
|
|
|
|
sha256 = "05w89wfjlfbpqfjnv6wisxmaf13qb28b2223f9264jyx30qszw1c";
|
|
|
|
};
|
|
|
|
}."${stdenv.hostPlatform.system}";
|
|
|
|
|
2017-03-15 20:37:48 +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";
|
|
|
|
};
|
|
|
|
|
2021-05-27 08:13:36 +00:00
|
|
|
jdk = stdenv.mkDerivation rec {
|
2020-01-18 15:43:03 +00:00
|
|
|
# @hlolli: Later version than 1.8.0_202 throws error when building jvmci.
|
|
|
|
# dyld: lazy symbol binding failed: Symbol not found: _JVM_BeforeHalt
|
|
|
|
# Referenced from: ../libjava.dylib Expected in: .../libjvm.dylib
|
2021-05-27 08:13:36 +00:00
|
|
|
pname = "zulu${dist.zuluVersion}-ca-jdk";
|
|
|
|
version = dist.jdkVersion;
|
2016-01-14 10:28:16 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-05-27 08:13:36 +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/";
|
2016-01-14 10:28:16 +00:00
|
|
|
};
|
|
|
|
|
2021-02-20 21:01:53 +00:00
|
|
|
nativeBuildInputs = [ unzip ];
|
2016-01-14 10:28:16 +00:00
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
|
|
|
mv * $out
|
|
|
|
|
2017-03-15 20:37:48 +00:00
|
|
|
unzip ${jce-policies}
|
|
|
|
mv -f ZuluJCEPolicies/*.jar $out/jre/lib/security/
|
|
|
|
|
2016-01-14 10:28:16 +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 20:11:09 +00:00
|
|
|
|
|
|
|
if [ -f $out/LICENSE ]; then
|
|
|
|
install -D $out/LICENSE $out/share/zulu/LICENSE
|
|
|
|
rm $out/LICENSE
|
|
|
|
fi
|
2016-01-14 10:28:16 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
# Propagate the setJavaClassPath setup hook from the JRE so that
|
|
|
|
# any package that depends on the JRE has $CLASSPATH set up
|
|
|
|
# properly.
|
|
|
|
mkdir -p $out/nix-support
|
2017-11-17 18:26:21 +00:00
|
|
|
printWords ${setJavaClassPath} > $out/nix-support/propagated-build-inputs
|
2016-01-14 10:28:16 +00:00
|
|
|
|
|
|
|
# Set JAVA_HOME automatically.
|
|
|
|
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
|
2016-01-14 10:28:16 +00:00
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
|
|
|
passthru = {
|
|
|
|
jre = jdk;
|
|
|
|
home = jdk;
|
|
|
|
};
|
|
|
|
|
2021-06-16 10:32:06 +00:00
|
|
|
meta = import ./meta.nix lib;
|
2016-01-14 10:28:16 +00:00
|
|
|
};
|
|
|
|
in jdk
|