2007-03-05 18:13:53 +01:00
|
|
|
{ swingSupport ? true
|
|
|
|
, stdenv
|
2013-05-16 10:34:35 +02:00
|
|
|
, requireFile
|
2007-03-05 18:13:53 +01:00
|
|
|
, unzip
|
2008-02-26 16:24:33 +01:00
|
|
|
, makeWrapper
|
2007-03-05 18:55:17 +01:00
|
|
|
, xlibs ? null
|
2007-03-05 18:13:53 +01:00
|
|
|
, installjdk ? true
|
2007-03-28 17:21:43 +02:00
|
|
|
, pluginSupport ? true
|
2007-03-05 18:13:53 +01:00
|
|
|
}:
|
|
|
|
|
2007-03-17 15:37:23 +01:00
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
2007-03-05 18:55:17 +01:00
|
|
|
assert swingSupport -> xlibs != null;
|
2007-03-05 18:13:53 +01:00
|
|
|
|
2010-09-14 17:14:18 +02:00
|
|
|
let
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The JRE libraries are in directories that depend on the CPU.
|
|
|
|
*/
|
|
|
|
architecture =
|
|
|
|
if stdenv.system == "i686-linux" then
|
|
|
|
"i386"
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
|
|
|
"amd64"
|
|
|
|
else
|
|
|
|
abort "jdk requires i686-linux or x86_64 linux";
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2007-03-05 18:13:53 +01:00
|
|
|
name =
|
2013-04-18 20:18:09 +02:00
|
|
|
if installjdk then "jdk-1.6.0_45b06" else "jre-1.6.0_45b06";
|
2007-03-05 18:13:53 +01:00
|
|
|
|
|
|
|
src =
|
2007-03-17 15:37:23 +01:00
|
|
|
if stdenv.system == "i686-linux" then
|
2013-05-16 10:34:35 +02:00
|
|
|
requireFile {
|
|
|
|
name = "jdk-6u45-linux-i586.bin";
|
|
|
|
url = http://www.oracle.com/technetwork/java/javase/downloads/jdk6downloads-1902814.html;
|
2013-04-18 20:18:09 +02:00
|
|
|
sha256 = "0mx3d2qlal5zyz1a7ld1yk2rs8pf9sjxs2jzasais3nq30jmlfym";
|
2007-03-17 15:37:23 +01:00
|
|
|
}
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
2013-05-16 10:34:35 +02:00
|
|
|
requireFile {
|
|
|
|
name = "jdk-6u45-linux-x64.bin";
|
|
|
|
url = http://www.oracle.com/technetwork/java/javase/downloads/jdk6downloads-1902814.html;
|
2013-04-18 20:18:09 +02:00
|
|
|
sha256 = "1s0j1pdr6y8c816d9i86rx4zp12nbhmas1rxksp0r53cn7m3ljbb";
|
2007-03-17 15:37:23 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
abort "jdk requires i686-linux or x86_64 linux";
|
2007-03-05 18:13:53 +01:00
|
|
|
|
|
|
|
builder = ./dlj-bundle-builder.sh;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If jdk5 is added, make sure to use the original construct script.
|
|
|
|
* This copy removes references to kinit, klist, ktab, which seem to be
|
2007-03-21 13:53:01 +01:00
|
|
|
* gone in jdk6.
|
2007-03-05 18:13:53 +01:00
|
|
|
*/
|
|
|
|
construct = ./jdk6-construct.sh;
|
|
|
|
inherit installjdk;
|
|
|
|
|
2008-02-26 16:24:33 +01:00
|
|
|
buildInputs = [unzip makeWrapper];
|
2012-08-22 21:24:04 +02:00
|
|
|
|
2008-03-28 12:58:36 +01:00
|
|
|
/**
|
|
|
|
* libXt is only needed on amd64
|
|
|
|
*/
|
2007-03-05 18:13:53 +01:00
|
|
|
libraries =
|
2008-04-10 14:11:53 +02:00
|
|
|
[stdenv.gcc.libc] ++
|
2008-03-28 12:58:36 +01:00
|
|
|
(if swingSupport then [xlibs.libX11 xlibs.libXext xlibs.libXtst xlibs.libXi xlibs.libXp xlibs.libXt] else []);
|
2007-03-28 00:02:55 +02:00
|
|
|
|
2010-09-14 17:14:18 +02:00
|
|
|
inherit swingSupport pluginSupport architecture;
|
2008-06-14 23:42:07 +02:00
|
|
|
inherit (xlibs) libX11;
|
|
|
|
|
2010-09-14 17:14:18 +02:00
|
|
|
mozillaPlugin = if installjdk then "/jre/lib/${architecture}/plugins" else "/lib/${architecture}/plugins";
|
2012-08-22 21:24:44 +02:00
|
|
|
|
|
|
|
meta.license = "unfree";
|
2010-09-14 17:14:18 +02:00
|
|
|
}
|