Updated eclipse to 3.1.2
svn path=/nixpkgs/trunk/; revision=4796
This commit is contained in:
parent
5e4075947c
commit
5bacf0f069
@ -1 +1 @@
|
|||||||
import ./eclipse-sdk-3.1.1.nix
|
import ./eclipse-sdk-3.1.2.nix
|
18
pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix
Normal file
18
pkgs/applications/editors/eclipse/eclipse-sdk-3.1.2.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user