summary refs log tree commit diff
path: root/pkgs/development/compilers/jdk/jdk5-sun-linux.nix
blob: 57ec2d6d6e9fea366b94ac0c6f24149dee42588d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
 * This Nix expression requires the user to download the jdk
 * distribution to /tmp. Please obtain jdk-1_5_0_05-linux-i586.bin
 * from java.sun.com by hand and place it in /tmp. Blame Sun, not me.
 *
 * Note that this is not necessary if someone has already pushed a
 * binary.
 *
 * @author Martin Bravenboer <martin@cs.uu.nl>
 */
{ swingSupport ? true
, stdenv, fetchurl, unzip, libX11 ? null, libXext ? null
}:

assert stdenv.system == "i686-linux";

assert swingSupport -> libX11 != null && libXext != null;

(stdenv.mkDerivation {
  name = "jdk-1.5.0";
  builder = ./builder.sh;
  filename = "jdk-1_5_0_05";
  dirname = "jdk1.5.0_05";
  pathname = "/tmp/jdk-1_5_0_05-linux-i586.bin";
  md5 = "2f83bf2a38fff1f8ac51b02ec7391ca3";
  buildInputs = [unzip];
  libraries =
    (if swingSupport then [libX11 libXext] else []);
} // {inherit swingSupport;})