9c507f1721
svn path=/nixpkgs/trunk/; revision=1554
18 lines
386 B
Nix
18 lines
386 B
Nix
{fetchurl, stdenv, unzip}:
|
|
|
|
let {
|
|
body =
|
|
stdenv.mkDerivation {
|
|
name = "eclipse-sdk-3.0.1";
|
|
builder = ./builder.sh;
|
|
src = bindist;
|
|
inherit unzip;
|
|
};
|
|
|
|
bindist =
|
|
fetchurl {
|
|
url = http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/R-3.0.1-200409161125/eclipse-SDK-3.0.1-linux-gtk.zip;
|
|
md5 = "d0f743c972adf13e71a43b2dc6c9c55b";
|
|
};
|
|
}
|