forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide a way to access all JDK versions.
- Loading branch information
Showing
6 changed files
with
269 additions
and
99 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
{ lib, stdenv, fetchurl, unzip, setJavaClassPath }: | ||
let | ||
# Details from https://www.azul.com/downloads/?version=java-17-lts&os=macos&package=jdk | ||
# Note that the latest build may differ by platform | ||
dist = { | ||
x86_64-darwin = { | ||
arch = "x64"; | ||
zuluVersion = "17.30.15"; | ||
jdkVersion = "17.0.1"; | ||
sha256 = "sha256-CdZP5XY3O0MUQigRvIQC+7dwAXaCKw4eK/L/imytEOs="; | ||
}; | ||
|
||
aarch64-darwin = { | ||
arch = "aarch64"; | ||
zuluVersion = "17.30.19"; | ||
jdkVersion = "17.0.1"; | ||
sha256 = "sha256-zhBCXOnO/fsj6+q+vAlEz7QVMRFKLVvYnjwZzFz6mRM="; | ||
}; | ||
}."${stdenv.hostPlatform.system}"; | ||
|
||
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 { | ||
pname = "zulu${dist.zuluVersion}-ca-jdk"; | ||
version = dist.jdkVersion; | ||
|
||
src = fetchurl { | ||
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/"; | ||
}; | ||
|
||
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-${lib.versions.major version}.jdk/Contents/Home/man $out/share/man | ||
''; | ||
|
||
passthru = { | ||
home = jdk; | ||
}; | ||
|
||
meta = import ./meta.nix lib; | ||
}; | ||
in | ||
jdk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.