summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/default.nix
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2005-09-19 12:43:33 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2005-09-19 12:43:33 +0000
commit747df8295c7ee06b9e8937cd4e06b28c36d96115 (patch)
treeaf78bd916759c19bf94b5d10f39cd3b243b64140 /pkgs/applications/editors/eclipse/default.nix
parent4c70ef7e5dc4e65c989160a54ad104beaa1b10d5 (diff)
downloadnixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar.gz
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar.bz2
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar.lz
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar.xz
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.tar.zst
nixlib-747df8295c7ee06b9e8937cd4e06b28c36d96115.zip
Updated Eclipse to 3.1
svn path=/nixpkgs/trunk/; revision=3902
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";
     };
 }