Updated Eclipse to 3.1

svn path=/nixpkgs/trunk/; revision=3902
This commit is contained in:
Martin Bravenboer 2005-09-19 12:43:33 +00:00
parent 4c70ef7e5d
commit 747df8295c
3 changed files with 6 additions and 7 deletions

View File

@ -2,6 +2,6 @@ set -e
. $stdenv/setup . $stdenv/setup
$unzip/bin/unzip $src tar zxvf $src
mkdir $out mkdir $out
mv eclipse $out/ mv eclipse $out/

View File

@ -1,17 +1,16 @@
{fetchurl, stdenv, unzip}: {fetchurl, stdenv}:
let { let {
body = body =
stdenv.mkDerivation { stdenv.mkDerivation {
name = "eclipse-sdk-3.0.1"; name = "eclipse-sdk-3.1";
builder = ./builder.sh; builder = ./builder.sh;
src = bindist; src = bindist;
inherit unzip;
}; };
bindist = bindist =
fetchurl { fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/eclipse-SDK-3.0.1-linux-gtk.zip; url = ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/eclipse/R-3.1-200506271435/eclipse-SDK-3.1-linux-gtk.tar.gz;
md5 = "d0f743c972adf13e71a43b2dc6c9c55b"; md5 = "0441c11cc5af1e84ed3be322929899e8";
}; };
} }

View File

@ -1545,7 +1545,7 @@ rec {
}; };
eclipse = (import ../applications/editors/eclipse) { eclipse = (import ../applications/editors/eclipse) {
inherit fetchurl stdenv unzip; inherit fetchurl stdenv;
}; };
monodevelop = (import ../applications/editors/monodevelop) { monodevelop = (import ../applications/editors/monodevelop) {