nixpkgs/pkgs/development/compilers/openjdk/openjdk8.nix

158 lines
5.8 KiB
Nix
Raw Normal View History

2015-06-07 04:55:09 +00:00
{ stdenv, fetchurl, cpio, file, which, unzip, zip, xorg, cups, freetype, alsaLib, bootjdk, cacert, perl, liberation_ttf, fontconfig
, minimal ? false } :
2015-01-18 20:57:50 +00:00
let
2015-03-05 17:04:21 +00:00
update = "40";
2015-05-19 20:43:36 +00:00
build = "27";
2015-03-05 17:04:21 +00:00
baseurl = "http://hg.openjdk.java.net/jdk8u/jdk8u40";
2015-01-18 20:57:50 +00:00
repover = "jdk8u${update}-b${build}";
paxflags = if stdenv.isi686 then "msp" else "m";
jdk8 = fetchurl {
url = "${baseurl}/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "0ra05jngvvy2g1da5b9anrp86m812g2wlkxpijc82kxv6c3h6g28";
2015-01-18 20:57:50 +00:00
};
langtools = fetchurl {
url = "${baseurl}/langtools/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "0r9zdq13kgqqm8rgr36qf03h23psxcwzvdqffsncd4jvbfap3n5f";
2015-01-18 20:57:50 +00:00
};
hotspot = fetchurl {
url = "${baseurl}/hotspot/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "07v3z38v5fdsx3g28c4pkdq76cdmnc4qflf1wb3lz46lhy230hkd";
2015-01-18 20:57:50 +00:00
};
corba = fetchurl {
url = "${baseurl}/corba/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "0y20468f2yi14lijbd732f2mlgrn718pyfji3279l2rm4ad7r7pl";
2015-01-18 20:57:50 +00:00
};
jdk = fetchurl {
url = "${baseurl}/jdk/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "1sgfxmkq6z3vj9yq9kszr42b1ijvsknlss353jpcmyr1lljhyvfg";
2015-01-18 20:57:50 +00:00
};
jaxws = fetchurl {
url = "${baseurl}/jaxws/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "08p3657d0871pz0g5fg157az9q38r5h2zs49dm7512sc9qrn5c06";
2015-01-18 20:57:50 +00:00
};
jaxp = fetchurl {
url = "${baseurl}/jaxp/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "1f1vlrvlvnjbyh8d168smizvmkcm076zc496sxk6njqamby16ip2";
2015-01-18 20:57:50 +00:00
};
nashorn = fetchurl {
url = "${baseurl}/nashorn/archive/${repover}.tar.gz";
2015-05-19 20:43:36 +00:00
sha256 = "1llf3l4483kd8m1a77n7y9fgvm6fa63nim3qhp5z4gnw68ldbhra";
2015-01-18 20:57:50 +00:00
};
openjdk8 = stdenv.mkDerivation {
2015-01-18 20:57:50 +00:00
name = "openjdk-8u${update}b${build}";
srcs = [ jdk8 langtools hotspot corba jdk jaxws jaxp nashorn ];
2015-01-18 20:57:50 +00:00
outputs = [ "out" "jre" ];
buildInputs = [ cpio file which unzip zip
xorg.libX11 xorg.libXt xorg.libXext xorg.libXrender xorg.libXtst
xorg.libXi xorg.libXinerama xorg.libXcursor xorg.lndir
cups freetype alsaLib perl liberation_ttf fontconfig bootjdk ];
2015-01-18 20:57:50 +00:00
setSourceRoot = ''
2015-03-05 17:04:21 +00:00
sourceRoot="jdk8u${update}-jdk8u${update}-b${build}";
2015-01-18 20:57:50 +00:00
'';
prePatch = ''
# despite --with-override-jdk the build still searchs here
# GNU Patch bug, --follow-symlinks only follow the last dir part symlink
mv "../jdk-${repover}" "jdk";
mv "../hotspot-${repover}" "hotspot";
'';
postPatch = ''
mv jdk "../jdk-${repover}";
mv hotspot "../hotspot-${repover}";
# Patching is over, lets re-add the links
ln -s "../jdk-${repover}" "jdk"
ln -s "../hotspot-${repover}" "hotspot"
2015-01-18 20:57:50 +00:00
'';
patches = [
./fix-java-home-jdk8.patch
2015-01-18 20:57:50 +00:00
./read-truststore-from-env-jdk8.patch
./currency-date-range-jdk8.patch
./JDK-8074312-hotspot.patch
2015-01-18 20:57:50 +00:00
];
preConfigure = ''
chmod +x configure
2015-01-20 08:00:49 +00:00
substituteInPlace configure --replace /bin/bash "$shell"
substituteInPlace ../hotspot-${repover}/make/linux/adlc_updater --replace /bin/sh "$shell"
2015-01-18 20:57:50 +00:00
'';
configureFlags = [
"--with-freetype=${freetype}"
"--with-override-langtools=../langtools-${repover}"
"--with-override-hotspot=../hotspot-${repover}"
"--with-override-corba=../corba-${repover}"
"--with-override-jdk=../jdk-${repover}"
"--with-override-jaxws=../jaxws-${repover}"
"--with-override-jaxp=../jaxp-${repover}"
"--with-override-nashorn=../nashorn-${repover}"
"--with-boot-jdk=${bootjdk.home}"
2015-01-18 20:57:50 +00:00
"--with-update-version=${update}"
2015-06-07 04:55:09 +00:00
"--with-build-number=${build}"
2015-01-18 20:57:50 +00:00
"--with-milestone=fcs"
"--disable-debug-symbols"
2015-06-07 04:55:09 +00:00
] ++ stdenv.lib.optional minimal "--disable-headful";
NIX_LDFLAGS= if minimal then null else "-lfontconfig";
buildFlags = "all";
2015-01-18 20:57:50 +00:00
installPhase = ''
mkdir -p $out/lib/openjdk $out/share $jre/lib/openjdk
cp -av build"/"*/images/j2sdk-image"/"* $out/lib/openjdk
2015-01-18 20:57:50 +00:00
# Move some stuff to top-level.
mv $out/lib/openjdk/include $out/include
mv $out/lib/openjdk/man $out/share/man
# jni.h expects jni_md.h to be in the header search path.
ln -s $out/include/linux"/"*_md.h $out/include/
2015-01-18 20:57:50 +00:00
# Remove some broken manpages.
rm -rf $out/share/man/ja*
# Remove crap from the installation.
rm -rf $out/lib/openjdk/demo $out/lib/openjdk/sample
# Move the JRE to a separate output and setup fallback fonts
2015-01-18 20:57:50 +00:00
mv $out/lib/openjdk/jre $jre/lib/openjdk/
mkdir $out/lib/openjdk/jre
mkdir -p $jre/lib/openjdk/jre/lib/fonts/fallback
lndir ${liberation_ttf}/share/fonts/truetype $jre/lib/openjdk/jre/lib/fonts/fallback
2015-01-18 20:57:50 +00:00
lndir $jre/lib/openjdk/jre $out/lib/openjdk/jre
rm -rf $out/lib/openjdk/jre/bina
ln -s $out/lib/openjdk/bin $out/lib/openjdk/jre/bin
# Set PaX markings
exes=$(file $out/lib/openjdk/bin"/"* $jre/lib/openjdk/jre/bin"/"* 2> /dev/null | grep -E 'ELF.*(executable|shared object)' | sed -e 's/: .*$//')
2015-01-18 20:57:50 +00:00
echo "to mark: *$exes*"
for file in $exes; do
echo "marking *$file*"
paxmark ${paxflags} "$file"
done
# Remove duplicate binaries.
for i in $(cd $out/lib/openjdk/bin && echo *); do
if [ "$i" = java ]; then continue; fi
if cmp -s $out/lib/openjdk/bin/$i $jre/lib/openjdk/jre/bin/$i; then
ln -sfn $jre/lib/openjdk/jre/bin/$i $out/lib/openjdk/bin/$i
fi
done
# Generate certificates.
pushd $jre/lib/openjdk/jre/lib/security
rm cacerts
perl ${./generate-cacerts.pl} $jre/lib/openjdk/jre/bin/keytool ${cacert}/etc/ssl/certs/ca-bundle.crt
2015-01-18 20:57:50 +00:00
popd
ln -s $out/lib/openjdk/bin $out/bin
ln -s $jre/lib/openjdk/jre/bin $jre/bin
'';
2015-01-18 21:35:01 +00:00
meta = with stdenv.lib; {
2015-01-18 21:35:01 +00:00
homepage = http://openjdk.java.net/;
license = licenses.gpl2;
2015-01-18 21:35:01 +00:00
description = "The open-source Java Development Kit";
maintainers = with maintainers; [ edwtjo ];
platforms = platforms.linux;
2015-01-18 21:35:01 +00:00
};
passthru.home = "${openjdk8}/lib/openjdk";
}; in openjdk8