2ec94563bc
svn path=/nixpkgs/trunk/; revision=1257
25 lines
696 B
Nix
25 lines
696 B
Nix
/**
|
|
* 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-beta3";
|
|
filename = "jdk-1_5_0-beta3-b60";
|
|
dirname = "jdk1.5.0";
|
|
system = stdenv.system;
|
|
builder = ./builder.sh;
|
|
pathname = "/tmp/jdk-1_5_0-beta3-bin-b60-linux-i586-28_jul_2004.bin";
|
|
md5 = "c0e25a0776a957a8872382c5b90ef9ca";
|
|
stdenv = stdenv;
|
|
}
|