From 5bacf0f0695be49aa9fbee9007041157a44d0156 Mon Sep 17 00:00:00 2001 From: Martin Bravenboer Date: Sun, 12 Feb 2006 12:59:46 +0000 Subject: [PATCH] Updated eclipse to 3.1.2 svn path=/nixpkgs/trunk/; revision=4796 --- pkgs/applications/editors/eclipse/default.nix | 2 +- .../editors/eclipse/eclipse-sdk-3.1.2.nix | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix 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"; + }; +}