* Add the Eclipse Modeling Tools.

svn path=/nixpkgs/trunk/; revision=26799
This commit is contained in:
Eelco Dolstra 2011-04-12 08:41:53 +00:00
parent 34011a076a
commit 1c2ba5bcec
1 changed files with 16 additions and 0 deletions

View File

@ -110,5 +110,21 @@ in {
};
};
eclipse_modeling_36 = buildEclipse {
name = "eclipse-modeling-3.6.2";
description = "Eclipse Modeling Tools (includes Incubating components)";
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
url = http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/helios/SR2/eclipse-modeling-helios-SR2-incubation-linux-gtk-x86_64.tar.gz;
sha1 = "e96f5f006298f68476f4a15a2be8589158d5cc61";
}
else
fetchurl {
url = http://ftp-stud.fht-esslingen.de/pub/Mirrors/eclipse/technology/epp/downloads/release/helios/SR2/eclipse-modeling-helios-SR2-incubation-linux-gtk.tar.gz;
sha1 = "696377895bb26445de39d82a916b7e69edb1d939";
};
};
}