nixpkgs/pkgs/development/compilers/adoptopenjdk-bin/jdk-linux-base.nix

80 lines
1.9 KiB
Nix
Raw Normal View History

sourcePerArch:
2018-10-13 14:42:21 +00:00
2019-07-21 19:40:18 +00:00
{ stdenv
, lib
2018-10-13 14:42:21 +00:00
, fetchurl
2019-07-21 19:40:18 +00:00
, autoPatchelfHook
2018-10-13 14:42:21 +00:00
, alsaLib
2019-07-21 19:40:18 +00:00
, freetype
, fontconfig
2018-10-13 14:42:21 +00:00
, zlib
2019-07-21 19:40:18 +00:00
, xorg
, libffi
2018-10-13 14:42:21 +00:00
}:
let
cpuName = stdenv.hostPlatform.parsed.cpu.name;
2018-10-13 14:42:21 +00:00
in
let result = stdenv.mkDerivation rec {
name = if sourcePerArch.packageType == "jdk"
then "adoptopenjdk-${sourcePerArch.vmType}-bin-${version}"
else "adoptopenjdk-${sourcePerArch.packageType}-${sourcePerArch.vmType}-bin-${version}";
version = sourcePerArch.${cpuName}.version or (throw "unsupported CPU ${cpuName}");
2018-10-13 14:42:21 +00:00
src = fetchurl {
inherit (sourcePerArch.${cpuName}) url sha256;
2018-10-13 14:42:21 +00:00
};
2019-07-21 19:40:18 +00:00
buildInputs = [
alsaLib freetype fontconfig zlib xorg.libX11 xorg.libXext xorg.libXtst
xorg.libXi xorg.libXrender stdenv.cc.cc.lib
] ++ lib.optional stdenv.isAarch32 libffi;
2019-07-21 19:40:18 +00:00
nativeBuildInputs = [ autoPatchelfHook ];
2018-10-13 14:42:21 +00:00
# See: https://github.com/NixOS/patchelf/issues/10
dontStrip = 1;
installPhase = ''
cd ..
mv $sourceRoot $out
rm -rf $out/demo
# Remove some broken manpages.
rm -rf $out/man/ja*
# Remove embedded freetype to avoid problems like
# https://github.com/NixOS/nixpkgs/issues/57733
2019-07-21 19:40:18 +00:00
find "$out" -name 'libfreetype.so*' -delete
2018-10-13 14:42:21 +00:00
mkdir -p $out/nix-support
# Set JAVA_HOME automatically.
cat <<EOF >> "$out/nix-support/setup-hook"
if [ -z "\''${JAVA_HOME-}" ]; then export JAVA_HOME=$out; fi
2018-10-13 14:42:21 +00:00
EOF
'';
preFixup = ''
find "$out" -name libfontmanager.so -exec \
patchelf --add-needed libfontconfig.so {} \;
'';
2018-10-13 14:42:21 +00:00
# FIXME: use multiple outputs or return actual JRE package
passthru.jre = result;
passthru.home = result;
meta = with lib; {
2018-10-13 14:42:21 +00:00
license = licenses.gpl2Classpath;
description = "AdoptOpenJDK, prebuilt OpenJDK binary";
2019-07-21 19:40:18 +00:00
platforms = lib.mapAttrsToList (arch: _: arch + "-linux") sourcePerArch; # some inherit jre.meta.platforms
maintainers = with lib.maintainers; [ taku0 ];
2018-10-13 14:42:21 +00:00
};
}; in result