From 0d6c1cb83bc1b355b450cc270defe29ab595cb7f Mon Sep 17 00:00:00 2001 From: Martin Bravenboer Date: Tue, 6 Jun 2006 19:43:31 +0000 Subject: [PATCH] Updates of jre and jdk svn path=/nixpkgs/trunk/; revision=5395 --- pkgs/development/compilers/jdk/jdk5-sun-linux.nix | 10 +++++----- pkgs/development/interpreters/jre/jre-sun-linux.nix | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/pkgs/development/compilers/jdk/jdk5-sun-linux.nix b/pkgs/development/compilers/jdk/jdk5-sun-linux.nix index b00cb79f6d8e..b6c7759dc150 100644 --- a/pkgs/development/compilers/jdk/jdk5-sun-linux.nix +++ b/pkgs/development/compilers/jdk/jdk5-sun-linux.nix @@ -1,6 +1,6 @@ /** * This Nix expression requires the user to download the jdk - * distribution to /tmp. Please obtain jdk-1_5_0_06-linux-i586.bin + * distribution to /tmp. Please obtain jdk-1_5_0_07-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 @@ -19,10 +19,10 @@ assert swingSupport -> libX11 != null && libXext != null; (stdenv.mkDerivation { name = "jdk-1.5.0"; builder = ./builder.sh; - filename = "jdk-1_5_0_06"; - dirname = "jdk1.5.0_06"; - pathname = "/tmp/jdk-1_5_0_06-linux-i586.bin"; - md5 = "3cdad4a383b93680f02f6f06198c2227"; + filename = "jdk-1_5_0_07"; + dirname = "jdk1.5.0_07"; + pathname = "/tmp/jdk-1_5_0_07-linux-i586.bin"; + md5 = "1325082c36b4adcb71bc5449ae4c68cf"; buildInputs = [unzip]; libraries = (if swingSupport then [libX11 libXext] else []); diff --git a/pkgs/development/interpreters/jre/jre-sun-linux.nix b/pkgs/development/interpreters/jre/jre-sun-linux.nix index 3376f6d47fe3..77d5d02c4712 100644 --- a/pkgs/development/interpreters/jre/jre-sun-linux.nix +++ b/pkgs/development/interpreters/jre/jre-sun-linux.nix @@ -4,10 +4,10 @@ assert stdenv.system == "i686-linux"; stdenv.mkDerivation { name = "jre-1.5.0"; - version = "jre1.5.0_06"; + version = "jre1.5.0_07"; builder = ./builder.sh; src = fetchurl { - url = "http://jdl.sun.com/webapps/download/AutoDL?BundleId=10336"; - md5 = "e0a88dbec9bfe3195794bb652bfc6516"; + url = "http://jdl.sun.com/webapps/download/AutoDL?BundleId=10542"; + md5 = "e2ad1c9e47f3e34d1efae059b9e2a2d9"; }; }