2004-05-12 17:06:23 +02:00
|
|
|
/**
|
|
|
|
* 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 {
|
2005-06-20 23:07:01 +02:00
|
|
|
name = "jdk-1.5.0";
|
|
|
|
filename = "jdk-1_5_0_03";
|
|
|
|
dirname = "jdk1.5.0_03";
|
2004-05-12 17:06:23 +02:00
|
|
|
system = stdenv.system;
|
|
|
|
builder = ./builder.sh;
|
2005-06-20 23:07:01 +02:00
|
|
|
pathname = "/tmp/jdk-1_5_0_03-linux-i586.bin";
|
|
|
|
md5 = "bc221641fcfdc9268499001326fc8ebb";
|
2004-05-12 17:06:23 +02:00
|
|
|
stdenv = stdenv;
|
|
|
|
}
|