about summary refs log tree commit diff
path: root/pkgs/development/compilers/j2sdk/j2sdk1.5-sun-linux.nix
blob: ced75dc17356344ca61f586d757bdd4b364e6457 (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
/**
 * This Nix expression requires the user to download the j2sdk
 * distribution to /tmp. Please obtain j2sdk-1_5_0-beta-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>
 */
{stdenv, fetchurl}: 

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

derivation {
  name = "j2sdk-1.5.0-beta2";
  filename = "jdk-1_5_0-beta2";
  dirname = "jdk1.5.0";
  system = stdenv.system;
  builder = ./builder.sh;
  pathname = "/tmp/jdk-1_5_0-beta2-linux-i586.bin";
  md5 = "93556887af8910d709de028ddb07f27d";
  stdenv = stdenv;
}