nixpkgs/pkgs/development/interpreters/j2re/j2re-sun-linux.nix
Martin Bravenboer 20765eb21b Updated all Java virtual machines: a serious security issue was found
in all 1.4.2 and 1.5.0 releases.


svn path=/nixpkgs/trunk/; revision=3230
2005-06-20 21:07:01 +00:00

14 lines
307 B
Nix

{stdenv, fetchurl}:
assert stdenv.system == "i686-linux";
stdenv.mkDerivation {
name = "jre-1.5.0";
version = "jre1.5.0_02";
builder = ./builder.sh;
src = fetchurl {
url = http://jdl.sun.com/webapps/download/AutoDL?BundleId=9986;
md5 = "1c9b3bb9670df5ebb5587d2bcba73b3c";
};
}