From a7872ec0eccef39720232bd7818b97ecf3dea62b Mon Sep 17 00:00:00 2001 From: Marc Weber Date: Mon, 10 Dec 2007 19:58:36 +0000 Subject: [PATCH] Eclipse download location for x86_64 added svn path=/nixpkgs/trunk/; revision=9900 --- pkgs/applications/editors/eclipse/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index 9051293f489..71afb07eece 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -11,10 +11,11 @@ let { }; bindist = - fetchurl { + if (stdenv.system == "x86_64-linux") then fetchurl { + url = "http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/eclipse/downloads/drops/R-3.3.1.1-200710231652/eclipse-SDK-3.3.1.1-linux-gtk-x86_64.tar.gz"; + sha256 = "3fec49e95c45b56ad77b2bd15616af9d1fa6c3b338d4c70b497ecdc974c0b030"; + } else fetchurl { url = http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/eclipse/downloads/drops/R-3.3.1.1-200710231652/eclipse-SDK-3.3.1.1-linux-gtk.tar.gz; sha256 = "409e47745c92ff8ea8b2037104ec90c2f8ce3edb3563fdb312d55e1bbd2ada01"; }; } - -