summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/eclipse/default.nix')
-rw-r--r--pkgs/applications/editors/eclipse/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix
index e244bf383ce6..ce0721272190 100644
--- a/pkgs/applications/editors/eclipse/default.nix
+++ b/pkgs/applications/editors/eclipse/default.nix
@@ -1,17 +1,16 @@
-{fetchurl, stdenv, unzip}:
+{fetchurl, stdenv}:
 
 let {
   body =
     stdenv.mkDerivation {
-      name = "eclipse-sdk-3.0.1";
+      name = "eclipse-sdk-3.1";
       builder = ./builder.sh;
       src = bindist;
-      inherit unzip;
    };
 
   bindist = 
     fetchurl {
-      url = http://nix.cs.uu.nl/dist/tarballs/eclipse-SDK-3.0.1-linux-gtk.zip;
-      md5 = "d0f743c972adf13e71a43b2dc6c9c55b";
+      url = ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/eclipse/R-3.1-200506271435/eclipse-SDK-3.1-linux-gtk.tar.gz;
+      md5 = "0441c11cc5af1e84ed3be322929899e8";
     };
 }