about summary refs log tree commit diff
path: root/pkgs/development/eclipse/ecj
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-11-05 14:36:45 +0000
committerLudovic Courtès <ludo@gnu.org>2009-11-05 14:36:45 +0000
commit9ec817f18aed14756a805a112f53a16b001800b6 (patch)
treedeea4e57d5d07acf8683ac8987ffc14638b8aca9 /pkgs/development/eclipse/ecj
parent4d675a283ef162ccfcb5c27ccce78d49edb1a916 (diff)
ECJ 3.5.1.
Includes bug fixes needed for IcedTea, see
http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=375 .

svn path=/nixpkgs/trunk/; revision=18137
Diffstat (limited to 'pkgs/development/eclipse/ecj')
-rw-r--r--pkgs/development/eclipse/ecj/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/eclipse/ecj/default.nix b/pkgs/development/eclipse/ecj/default.nix
index 0998de320c376..f463dd051684c 100644
--- a/pkgs/development/eclipse/ecj/default.nix
+++ b/pkgs/development/eclipse/ecj/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchurl, unzip, ant, gcj }:
 
 let
-  version = "3.5";
-  date    = "200906111540";
+  version = "3.5.1";
+  date    = "200909170800";
 in
   stdenv.mkDerivation rec {
     name = "ecj-${version}";
 
     src = fetchurl {
       url = "http://eclipse.ialto.org/eclipse/downloads/drops/R-${version}-${date}/ecjsrc-${version}.zip";
-      sha256 = "0f5xfi0458w31dr4pkvrjh1f9h2hbn7ssq9gnnma6gznj45jvy7k";
+      sha256 = "1vnl2mavisc567bip736xzsvvbjif5279wc4a7pbdik5wlir8qr7";
     };
 
     buildInputs = [ unzip ant gcj ];