Updated eclipse to 3.1.2

svn path=/nixpkgs/trunk/; revision=4796
This commit is contained in:
Martin Bravenboer 2006-02-12 12:59:46 +00:00
parent 5e4075947c
commit 5bacf0f069
2 changed files with 19 additions and 1 deletions

View File

@ -1 +1 @@
import ./eclipse-sdk-3.1.1.nix
import ./eclipse-sdk-3.1.2.nix

View File

@ -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";
};
}