diff --git a/pkgs/applications/editors/eclipse/default.nix b/pkgs/applications/editors/eclipse/default.nix index 17e4c6b3b1e..1542328ee84 100644 --- a/pkgs/applications/editors/eclipse/default.nix +++ b/pkgs/applications/editors/eclipse/default.nix @@ -1 +1 @@ -import ./eclipse-sdk-3.1.1.nix \ No newline at end of file +import ./eclipse-sdk-3.1.2.nix \ No newline at end of file diff --git a/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix b/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix new file mode 100644 index 00000000000..fdd25c08b72 --- /dev/null +++ b/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix @@ -0,0 +1,18 @@ +{fetchurl, stdenv, makeWrapper, jdk, gtk, glib, libXtst, plugins ? []}: + +let { + body = + stdenv.mkDerivation { + name = "eclipse-sdk-3.1.2"; + builder = ./builder.sh; + src = bindist; + inherit makeWrapper jdk plugins; + libraries = [gtk glib libXtst]; + }; + + bindist = + fetchurl { + url = http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.1.2-200601181600/eclipse-SDK-3.1.2-linux-gtk.tar.gz; + md5 = "ece50ed4d6d48dac839bfe8fa719fcff"; + }; +}