Merge pull request #3980 from gounnoticed/patch-1

Add luna cpp build for eclipse
This commit is contained in:
Aristid Breitkreuz 2014-09-06 10:54:40 +02:00
commit c37ad960ad

View file

@ -191,6 +191,23 @@ in {
sha256 = "0d6jlj7hwz8blx6csrlyi2h2prql0wckbh7ihwjmgclwpcpj84g6";
};
};
eclipse_cpp_44 = buildEclipse {
name = "eclipse-cpp-4.4";
description = "Eclipse IDE for C/C++ Developers";
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/epp/downloads/release/luna/R/eclipse-cpp-luna-R-linux-gtk-x86_64.tar.gz;
md5 = "b0a6ee33e8108a7ff4682ab911271b04";
}
else
fetchurl {
url = http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/technology/epp/downloads/release/luna/R/eclipse-cpp-luna-R-linux-gtk.tar.gz;
md5 = "5000f93cecf6ef9af112f0df6e8c87f3";
};
};
eclipse_sdk_421 = buildEclipse {
name = "eclipse-sdk-4.2.1";