summary refs log tree commit diff
path: root/pkgs/development/interpreters/j2re/j2re-sun-linux.nix
blob: f5673950dba5f635727cd42a8cc01d04f2721256 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{stdenv, fetchurl}: 

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


derivation {
  name = "j2re-1.4.2";
  system = stdenv.system;
  builder = ./builder.sh;
  src = fetchurl {
      url = http://www.java.sun.com/webapps/download/AutoDL?BundleId=9500;
      md5 = "b4aae3fcda73d976bd6ae6349b36a90c";
    };
  stdenv = stdenv;
}