diff --git a/pkgs/applications/editors/eclipse-classic/default.nix b/pkgs/applications/editors/eclipse-classic/default.nix index f2783409f35..beeaffb8549 100644 --- a/pkgs/applications/editors/eclipse-classic/default.nix +++ b/pkgs/applications/editors/eclipse-classic/default.nix @@ -7,16 +7,16 @@ assert stdenv ? glibc; stdenv.mkDerivation rec { - name = "eclipse-3.4.2"; + name = "eclipse-3.5.1"; src = if stdenv.system == "x86_64-linux" then fetchurl { - url = http://ftp.heanet.ie/pub/eclipse/eclipse/downloads/drops/R-3.4.2-200902111700/eclipse-SDK-3.4.2-linux-gtk-x86_64.tar.gz; - sha256 = "33e4e88347acd7f2f9243a8b887bd012cf5aec06c2d0f64da1349444bbd6876b"; + url = http://ftp.ing.umu.se/mirror/eclipse/eclipse/downloads/drops/R-3.5.1-200909170800/eclipse-SDK-3.5.1-linux-gtk-x86_64.tar.gz; + sha256 = "132zd7q9q29h978wnlsfbrlszc85r1wj30yqs2aqbv3l5xgny1kk"; } else fetchurl { - url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/eclipse/downloads/drops/R-3.4.2-200902111700/eclipse-SDK-3.4.2-linux-gtk.tar.gz; - sha256 = "4518992b0d7bafeaa2338017ebc7048b09a227f056f576b2b077a435110ef9dd"; + url = http://mirrors.linux-bg.org/eclipse/eclipse/downloads/drops/R-3.5.1-200909170800/eclipse-SDK-3.5.1-linux-gtk.tar.gz; + sha256 = "0a0lpa7gxg91zswpahi6fvg3csl4csvlym4z2ad5cc1d4yvicp56"; } ; diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 9b26f044481..ce41385d70b 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -6559,6 +6559,12 @@ let inherit (xlibs) libXtst; }; + eclipseNewer = import ../applications/editors/eclipse-classic { + inherit stdenv fetchurl patchelf makeDesktopItem freetype fontconfig jre; + inherit (gtkLibs) glib gtk; + inherit (xlibs) libX11 libXext libXrender libXtst; + }; + /* commenting out eclipse - Have a look at eclipseRunner - Marc Weber Reason: You can get Eclipse in many prepacked variations on eclipse.org @@ -6582,11 +6588,6 @@ let inherit (xlibs) libXtst; }); - eclipseNewer = import ../applications/editors/eclipse-classic { - inherit stdenv fetchurl patchelf makeDesktopItem freetype fontconfig jre; - inherit (gtkLibs) glib gtk; - inherit (xlibs) libX11 libXext libXrender libXtst; - }; eclipse = plugins: import ../applications/editors/eclipse {