forked from mirrors/nixpkgs
Updated Eclipse to 3.1
svn path=/nixpkgs/trunk/; revision=3902
This commit is contained in:
parent
4c70ef7e5d
commit
747df8295c
|
@ -2,6 +2,6 @@ set -e
|
|||
|
||||
. $stdenv/setup
|
||||
|
||||
$unzip/bin/unzip $src
|
||||
tar zxvf $src
|
||||
mkdir $out
|
||||
mv eclipse $out/
|
||||
|
|
|
@ -1,17 +1,16 @@
|
|||
{fetchurl, stdenv, unzip}:
|
||||
{fetchurl, stdenv}:
|
||||
|
||||
let {
|
||||
body =
|
||||
stdenv.mkDerivation {
|
||||
name = "eclipse-sdk-3.0.1";
|
||||
name = "eclipse-sdk-3.1";
|
||||
builder = ./builder.sh;
|
||||
src = bindist;
|
||||
inherit unzip;
|
||||
};
|
||||
|
||||
bindist =
|
||||
fetchurl {
|
||||
url = http://nix.cs.uu.nl/dist/tarballs/eclipse-SDK-3.0.1-linux-gtk.zip;
|
||||
md5 = "d0f743c972adf13e71a43b2dc6c9c55b";
|
||||
url = ftp://sunsite.informatik.rwth-aachen.de/pub/mirror/eclipse/R-3.1-200506271435/eclipse-SDK-3.1-linux-gtk.tar.gz;
|
||||
md5 = "0441c11cc5af1e84ed3be322929899e8";
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1545,7 +1545,7 @@ rec {
|
|||
};
|
||||
|
||||
eclipse = (import ../applications/editors/eclipse) {
|
||||
inherit fetchurl stdenv unzip;
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
monodevelop = (import ../applications/editors/monodevelop) {
|
||||
|
|
Loading…
Reference in a new issue