forked from mirrors/nixpkgs
dacd54d3f7
https://endoflife.date/java https://www.azul.com/products/azul-support-roadmap/ Related: #170825
93 lines
2.6 KiB
Nix
93 lines
2.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, unzip
|
|
, setJavaClassPath
|
|
, enableJavaFX ? false
|
|
}:
|
|
let
|
|
# 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 =
|
|
if enableJavaFX then "18bd9cd66d6abc6f8c627bc70278dc8fd4860e138e1dc9e170eddb89727ccc7b"
|
|
else "0v0n7h7i04pvna41wpdq2k9qiy70sbbqzqzvazfdvgm3gb22asw6";
|
|
};
|
|
|
|
aarch64-darwin = {
|
|
arch = "aarch64";
|
|
zuluVersion = "11.48.21";
|
|
jdkVersion = "11.0.11";
|
|
sha256 =
|
|
if enableJavaFX then "ef0de2705c6c2d586812f7f3736b70e22b069545b38034816016f9f264ad43f9"
|
|
else "066whglrxx81c95grv2kxdbvyh32728ixhml2v44ildh549n4lhc";
|
|
};
|
|
}."${stdenv.hostPlatform.system}";
|
|
|
|
jce-policies = fetchurl {
|
|
url = "https://web.archive.org/web/20211126120343/http://cdn.azul.com/zcek/bin/ZuluJCEPolicies.zip";
|
|
sha256 = "0nk7m0lgcbsvldq2wbfni2pzq8h818523z912i7v8hdcij5s48c0";
|
|
};
|
|
|
|
javaPackage = if enableJavaFX then "ca-fx-jdk" else "ca-jdk";
|
|
|
|
jdk = stdenv.mkDerivation rec {
|
|
pname = "zulu${dist.zuluVersion}-${javaPackage}";
|
|
version = dist.jdkVersion;
|
|
|
|
src = fetchurl {
|
|
url = "https://cdn.azul.com/zulu/bin/zulu${dist.zuluVersion}-${javaPackage}${dist.jdkVersion}-macosx_${dist.arch}.tar.gz";
|
|
inherit (dist) sha256;
|
|
curlOpts = "-H Referer:https://www.azul.com/downloads/zulu/";
|
|
};
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
|
|
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
|
|
'';
|
|
|
|
# fixupPhase is moving the man to share/man which breaks it because it's a
|
|
# relative symlink.
|
|
postFixup = ''
|
|
ln -nsf ../zulu-11.jdk/Contents/Home/man $out/share/man
|
|
'';
|
|
|
|
passthru = {
|
|
home = jdk;
|
|
};
|
|
|
|
meta = import ./meta.nix lib version;
|
|
};
|
|
in
|
|
jdk
|