summary refs log tree commit diff
path: root/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix')
-rw-r--r--pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix b/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix
new file mode 100644
index 000000000000..0627d5d13e81
--- /dev/null
+++ b/pkgs/applications/editors/eclipse/eclipse-sdk-3.1.nix
@@ -0,0 +1,18 @@
+{fetchurl, stdenv, makeWrapper, jdk, gtk, glib, libXtst}:
+
+let {
+  body =
+    stdenv.mkDerivation {
+      name = "eclipse-sdk-3.1";
+      builder = ./builder.sh;
+      src = bindist;
+      inherit makeWrapper jdk;
+      libraries = [gtk glib libXtst];
+   };
+
+  bindist = 
+    fetchurl {
+      url = http://sunsite.informatik.rwth-aachen.de/eclipse/downloads/drops/R-3.1-200506271435/eclipse-SDK-3.1-linux-gtk.tar.gz;
+      md5 = "0441c11cc5af1e84ed3be322929899e8";
+    };
+}