2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
name-prefix ? "temurin",
|
|
|
|
brand-name ? "Eclipse Temurin",
|
|
|
|
sourcePerArch,
|
|
|
|
knownVulnerabilities ? [ ],
|
2024-05-02 00:46:19 +00:00
|
|
|
}:
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
stdenv,
|
|
|
|
lib,
|
|
|
|
fetchurl,
|
|
|
|
autoPatchelfHook,
|
|
|
|
makeWrapper,
|
|
|
|
setJavaClassPath,
|
|
|
|
# minimum dependencies
|
|
|
|
alsa-lib,
|
|
|
|
fontconfig,
|
|
|
|
freetype,
|
|
|
|
libffi,
|
|
|
|
xorg,
|
|
|
|
zlib,
|
|
|
|
# runtime dependencies
|
|
|
|
cups,
|
|
|
|
# runtime dependencies for GTK+ Look and Feel
|
|
|
|
# TODO(@sternenseemann): gtk3 fails to evaluate in pkgsCross.ghcjs.buildPackages
|
|
|
|
# which should be fixable, this is a no-rebuild workaround for GHC.
|
|
|
|
gtkSupport ? !stdenv.targetPlatform.isGhcjs,
|
|
|
|
cairo,
|
|
|
|
glib,
|
|
|
|
gtk3,
|
2024-05-02 00:46:19 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
cpuName = stdenv.hostPlatform.parsed.cpu.name;
|
2024-06-30 08:16:52 +00:00
|
|
|
runtimeDependencies =
|
|
|
|
[ cups ]
|
|
|
|
++ lib.optionals gtkSupport [
|
|
|
|
cairo
|
|
|
|
glib
|
|
|
|
gtk3
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
runtimeLibraryPath = lib.makeLibraryPath runtimeDependencies;
|
|
|
|
validCpuTypes = builtins.attrNames lib.systems.parse.cpuTypes;
|
2024-06-30 08:16:52 +00:00
|
|
|
providedCpuTypes = builtins.filter (arch: builtins.elem arch validCpuTypes) (
|
|
|
|
builtins.attrNames sourcePerArch
|
|
|
|
);
|
2024-05-02 00:46:19 +00:00
|
|
|
result = stdenv.mkDerivation {
|
2024-06-30 08:16:52 +00:00
|
|
|
pname =
|
|
|
|
if sourcePerArch.packageType == "jdk" then
|
|
|
|
"${name-prefix}-bin"
|
|
|
|
else
|
|
|
|
"${name-prefix}-${sourcePerArch.packageType}-bin";
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
version = sourcePerArch.${cpuName}.version or (throw "unsupported CPU ${cpuName}");
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
src = fetchurl { inherit (sourcePerArch.${cpuName}) url sha256; };
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
alsa-lib # libasound.so wanted by lib/libjsound.so
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
stdenv.cc.cc.lib # libstdc++.so.6
|
|
|
|
xorg.libX11
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXi
|
|
|
|
xorg.libXrender
|
|
|
|
xorg.libXtst
|
|
|
|
zlib
|
|
|
|
] ++ lib.optional stdenv.isAarch32 libffi;
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
|
|
|
makeWrapper
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
# See: https://github.com/NixOS/patchelf/issues/10
|
|
|
|
dontStrip = 1;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
mv $sourceRoot $out
|
|
|
|
|
|
|
|
# jni.h expects jni_md.h to be in the header search path.
|
|
|
|
ln -s $out/include/linux/*_md.h $out/include/
|
|
|
|
|
|
|
|
# Remove some broken manpages.
|
|
|
|
# Only for 11 and earlier.
|
|
|
|
[ -e "$out/man/ja" ] && rm -r $out/man/ja*
|
|
|
|
|
|
|
|
# Remove embedded freetype to avoid problems like
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/57733
|
|
|
|
find "$out" -name 'libfreetype.so*' -delete
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
# We cannot use -exec since wrapProgram is a function but not a command.
|
|
|
|
#
|
|
|
|
# jspawnhelper is executed from JVM, so it doesn't need to wrap it, and it
|
|
|
|
# breaks building OpenJDK (#114495).
|
|
|
|
for bin in $( find "$out" -executable -type f -not -name jspawnhelper ); do
|
|
|
|
if patchelf --print-interpreter "$bin" &> /dev/null; then
|
|
|
|
wrapProgram "$bin" --prefix LD_LIBRARY_PATH : "${runtimeLibraryPath}"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
find "$out" -name libfontmanager.so -exec \
|
|
|
|
patchelf --add-needed libfontconfig.so {} \;
|
|
|
|
'';
|
|
|
|
|
|
|
|
# FIXME: use multiple outputs or return actual JRE package
|
|
|
|
passthru = {
|
|
|
|
jre = result;
|
|
|
|
home = result;
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.gpl2Classpath;
|
2024-06-30 08:16:52 +00:00
|
|
|
sourceProvenance = with sourceTypes; [
|
|
|
|
binaryNativeCode
|
|
|
|
binaryBytecode
|
|
|
|
];
|
2024-05-02 00:46:19 +00:00
|
|
|
description = "${brand-name}, prebuilt OpenJDK binary";
|
2024-06-30 08:16:52 +00:00
|
|
|
platforms = builtins.map (arch: arch + "-linux") providedCpuTypes; # some inherit jre.meta.platforms
|
2024-05-02 00:46:19 +00:00
|
|
|
maintainers = with maintainers; [ taku0 ];
|
|
|
|
inherit knownVulnerabilities;
|
|
|
|
mainProgram = "java";
|
|
|
|
};
|
|
|
|
};
|
2024-06-30 08:16:52 +00:00
|
|
|
in
|
|
|
|
result
|