2015-10-05 11:23:02 +01:00
|
|
|
{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper
|
2009-11-20 15:19:00 +00:00
|
|
|
, freetype, fontconfig, libX11, libXext, libXrender, zlib
|
2016-09-11 22:24:51 +01:00
|
|
|
, glib, libXtst, jdk
|
2014-06-01 22:03:36 +01:00
|
|
|
, webkitgtk2 ? null # for internal web browser
|
2015-07-26 09:33:10 +01:00
|
|
|
, buildEnv, writeText, runCommand
|
2015-07-30 22:36:14 +01:00
|
|
|
, callPackage
|
2016-09-11 22:24:51 +01:00
|
|
|
}:
|
2009-05-13 14:55:53 +01:00
|
|
|
|
2011-04-11 21:29:47 +01:00
|
|
|
assert stdenv ? glibc;
|
2010-05-09 15:17:21 +01:00
|
|
|
|
2016-01-16 17:35:35 +00:00
|
|
|
rec {
|
2010-05-09 15:17:21 +01:00
|
|
|
|
2016-09-11 22:24:51 +01:00
|
|
|
buildEclipse = callPackage ./build-eclipse.nix { };
|
2010-05-09 15:17:21 +01:00
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse CPP
|
2016-10-20 19:04:38 +01:00
|
|
|
|
|
|
|
eclipse-cpp-46 = buildEclipse {
|
|
|
|
name = "eclipse-cpp-4.6.0";
|
|
|
|
description = "Eclipse IDE for C/C++ Developers, Neon release";
|
2011-04-11 21:29:47 +01:00
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/R/eclipse-cpp-neon-R-linux-gtk-x86_64.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "09fqsgvbjfdqvn7z03crkii34z4bsb34y272q68ib8741bxk0i6m";
|
2010-05-09 15:17:21 +01:00
|
|
|
}
|
2016-10-20 19:04:38 +01:00
|
|
|
else if stdenv.system == "i686-linux" then
|
2011-04-11 21:29:47 +01:00
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/R/eclipse-cpp-neon-R-linux-gtk.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "0a12qmqq22v7sbmwn1hjv1zcrkmp64bf0ajmdjljhs9ac79mxn5h";
|
2015-03-18 15:30:01 +00:00
|
|
|
}
|
2016-10-20 19:04:38 +01:00
|
|
|
else throw "Unsupported system: ${stdenv.system}";
|
2015-03-18 15:30:01 +00:00
|
|
|
};
|
|
|
|
|
2016-10-20 19:04:38 +01:00
|
|
|
eclipse-cpp-37 = buildEclipse {
|
|
|
|
name = "eclipse-cpp-3.7";
|
2011-04-11 21:29:47 +01:00
|
|
|
description = "Eclipse IDE for C/C++ Developers";
|
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/indigo/R/eclipse-cpp-indigo-incubation-linux-gtk-x86_64.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "14ppc9g9igzvj1pq7jl01vwhzb66nmzbl9wsdl1sf3xnwa9wnqk3";
|
2011-04-11 21:29:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/indigo/R/eclipse-cpp-indigo-incubation-linux-gtk.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "1cvg1vgyazrkinwzlvlf0dpl197p4784752srqybqylyj5psdi3b";
|
2011-04-11 21:29:47 +01:00
|
|
|
};
|
2009-11-20 15:33:06 +00:00
|
|
|
};
|
2016-10-20 19:04:38 +01:00
|
|
|
eclipse_cpp_37 = eclipse-cpp-37; # backward compatibility, added 2016-01-30
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Modeling
|
2011-04-11 21:29:47 +01:00
|
|
|
|
2016-10-20 16:27:01 +01:00
|
|
|
eclipse-modeling-46 = buildEclipse {
|
|
|
|
name = "eclipse-modeling-4.6";
|
|
|
|
description = "Eclipse Modeling Tools";
|
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/1a/eclipse-modeling-neon-1a-linux-gtk-x86_64.tar.gz;
|
2016-10-20 16:27:01 +01:00
|
|
|
sha1 = "3695fd049c4cca2d235f424557e19877795a8183";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/neon/1a/eclipse-modeling-neon-1a-linux-gtk.tar.gz;
|
2016-10-20 16:27:01 +01:00
|
|
|
sha1 = "fa0694a0b44e8e9c2301417f84dba45cf9ac6e61";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-01-30 12:32:51 +00:00
|
|
|
eclipse-modeling-36 = buildEclipse {
|
2011-04-12 09:41:53 +01:00
|
|
|
name = "eclipse-modeling-3.6.2";
|
|
|
|
description = "Eclipse Modeling Tools (includes Incubating components)";
|
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/helios/SR2/eclipse-modeling-helios-SR2-incubation-linux-gtk-x86_64.tar.gz;
|
2011-04-12 09:41:53 +01:00
|
|
|
sha1 = "e96f5f006298f68476f4a15a2be8589158d5cc61";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/helios/SR2/eclipse-modeling-helios-SR2-incubation-linux-gtk.tar.gz;
|
2011-04-12 09:41:53 +01:00
|
|
|
sha1 = "696377895bb26445de39d82a916b7e69edb1d939";
|
|
|
|
};
|
|
|
|
};
|
2016-01-30 12:32:51 +00:00
|
|
|
eclipse_modeling_36 = eclipse-modeling-36; # backward compatibility, added 2016-01-30
|
2011-04-12 09:41:53 +01:00
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Platform
|
2016-10-20 19:04:38 +01:00
|
|
|
|
|
|
|
eclipse-platform = eclipse-platform-46;
|
|
|
|
|
|
|
|
eclipse-platform-46 = buildEclipse {
|
2016-10-22 23:27:09 +01:00
|
|
|
name = "eclipse-platform-4.6.1";
|
2016-10-20 19:04:38 +01:00
|
|
|
description = "Eclipse platform";
|
2013-05-15 01:25:56 +01:00
|
|
|
sources = {
|
|
|
|
"x86_64-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.1-201609071200/eclipse-SDK-4.6.1-linux-gtk-x86_64.tar.gz;
|
2016-10-22 23:27:09 +01:00
|
|
|
sha256 = "1mr7sj4whz23iwz5j6mbqd80a39177qv0r7b6cip7dji4n2agl8j";
|
2013-05-15 01:25:56 +01:00
|
|
|
};
|
|
|
|
"i686-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.1-201609071200/eclipse-SDK-4.6.1-linux-gtk.tar.gz;
|
2016-10-22 23:27:09 +01:00
|
|
|
sha256 = "0kgj0zpgzwx90q13c4mr8swf63azd56532ycxgq2rbs0d1qbl87j";
|
2011-08-16 19:17:31 +01:00
|
|
|
};
|
2013-05-15 01:25:56 +01:00
|
|
|
};
|
2011-08-16 19:17:31 +01:00
|
|
|
};
|
2013-04-15 20:17:23 +01:00
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Scala SDK
|
2016-09-08 08:56:17 +01:00
|
|
|
|
2016-10-20 21:08:27 +01:00
|
|
|
eclipse-scala-sdk-441 = buildEclipse {
|
|
|
|
name = "eclipse-scala-sdk-4.4.1";
|
2016-10-20 19:04:38 +01:00
|
|
|
description = "Eclipse IDE for Scala Developers";
|
2012-07-28 20:54:40 +01:00
|
|
|
src =
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
2016-10-20 19:04:38 +01:00
|
|
|
fetchurl { # tested
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://downloads.typesafe.com/scalaide-pack/4.4.1-vfinal-luna-211-20160504/scala-SDK-4.4.1-vfinal-2.11-linux.gtk.x86_64.tar.gz;
|
2016-10-20 21:08:27 +01:00
|
|
|
sha256 = "4c2d1ac68384e12a11a851cf0fc7757aea087eba69329b21d539382a65340d27";
|
2012-07-28 20:54:40 +01:00
|
|
|
}
|
|
|
|
else
|
2016-10-20 19:04:38 +01:00
|
|
|
fetchurl { # untested
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://downloads.typesafe.com/scalaide-pack/4.4.1-vfinal-luna-211-20160504/scala-SDK-4.4.1-vfinal-2.11-linux.gtk.x86.tar.gz;
|
2016-10-20 21:08:27 +01:00
|
|
|
sha256 = "35383cb09567187e14a30c15de9fd9aa0eef99e4bbb342396ce3acd11fb5cbac";
|
2014-06-28 18:47:35 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse SDK
|
2015-07-26 09:33:10 +01:00
|
|
|
|
2016-08-04 02:25:29 +01:00
|
|
|
eclipse-sdk-46 = buildEclipse {
|
2016-10-22 23:27:33 +01:00
|
|
|
name = "eclipse-sdk-4.6.1";
|
2016-08-04 02:25:29 +01:00
|
|
|
description = "Eclipse Neon Classic";
|
|
|
|
sources = {
|
|
|
|
"x86_64-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.1-201609071200/eclipse-SDK-4.6.1-linux-gtk-x86_64.tar.gz;
|
2016-10-22 23:27:33 +01:00
|
|
|
sha256 = "1mr7sj4whz23iwz5j6mbqd80a39177qv0r7b6cip7dji4n2agl8j";
|
2016-08-04 02:25:29 +01:00
|
|
|
};
|
|
|
|
"i686-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.1-201609071200/eclipse-SDK-4.6.1-linux-gtk.tar.gz;
|
2016-10-22 23:27:33 +01:00
|
|
|
sha256 = "0kgj0zpgzwx90q13c4mr8swf63azd56532ycxgq2rbs0d1qbl87j";
|
2016-08-04 02:25:29 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2015-11-06 14:26:34 +00:00
|
|
|
|
2016-10-20 19:04:38 +01:00
|
|
|
eclipse-sdk-37 = buildEclipse {
|
|
|
|
name = "eclipse-sdk-3.7";
|
|
|
|
description = "Eclipse Classic";
|
2016-01-20 19:28:53 +00:00
|
|
|
sources = {
|
|
|
|
"x86_64-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops/R-3.7.2-201202080800/eclipse-SDK-3.7.2-linux-gtk-x86_64.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "0nf4nv7awhp1k8b1hjb7chpjyjrqnyszsjbc4dlk9phpjv3j4wg5";
|
2016-01-20 19:28:53 +00:00
|
|
|
};
|
|
|
|
"i686-linux" = fetchurl {
|
2016-10-28 22:04:07 +01:00
|
|
|
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops/R-3.7.2-201202080800/eclipse-SDK-3.7.2-linux-gtk.tar.gz;
|
2016-10-20 19:04:38 +01:00
|
|
|
sha256 = "1isn7i45l9kyn2yx6vm88jl1gnxph8ynank0aaa218cg8kdygk7j";
|
2016-01-20 19:28:53 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2016-10-20 19:04:38 +01:00
|
|
|
eclipse_sdk_37 = eclipse-sdk-37; # backward compatibility, added 2016-01-30
|
2016-01-20 19:28:53 +00:00
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Environments
|
2016-03-19 10:45:04 +00:00
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
# Function that assembles a complete Eclipse environment from an
|
|
|
|
# Eclipse package and list of Eclipse plugins.
|
2015-07-26 09:33:10 +01:00
|
|
|
eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }:
|
|
|
|
let
|
|
|
|
# Gather up the desired plugins.
|
|
|
|
pluginEnv = buildEnv {
|
|
|
|
name = "eclipse-plugins";
|
2015-07-29 22:29:38 +01:00
|
|
|
paths =
|
|
|
|
with stdenv.lib;
|
|
|
|
filter (x: x ? isEclipsePlugin) (closePropagation plugins);
|
2015-07-26 09:33:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Prepare the JVM arguments to add to the ini file. We here also
|
|
|
|
# add the property indicating the plugin directory.
|
|
|
|
dropinPropName = "org.eclipse.equinox.p2.reconciler.dropins.directory";
|
|
|
|
dropinProp = "-D${dropinPropName}=${pluginEnv}/eclipse/dropins";
|
|
|
|
jvmArgsText = stdenv.lib.concatStringsSep "\n" (jvmArgs ++ [dropinProp]);
|
|
|
|
|
|
|
|
# Base the derivation name on the name of the underlying
|
|
|
|
# Eclipse.
|
|
|
|
name = (stdenv.lib.meta.appendToName "with-plugins" eclipse).name;
|
|
|
|
in
|
|
|
|
runCommand name { buildInputs = [ makeWrapper ]; } ''
|
2016-01-06 21:00:53 +00:00
|
|
|
mkdir -p $out/bin $out/etc
|
|
|
|
|
|
|
|
# Prepare an eclipse.ini with the plugin directory.
|
|
|
|
cat ${eclipse}/eclipse/eclipse.ini - > $out/etc/eclipse.ini <<EOF
|
|
|
|
${jvmArgsText}
|
|
|
|
EOF
|
|
|
|
|
2015-07-26 09:33:10 +01:00
|
|
|
makeWrapper ${eclipse}/bin/eclipse $out/bin/eclipse \
|
2016-01-06 21:00:53 +00:00
|
|
|
--add-flags "--launcher.ini $out/etc/eclipse.ini"
|
2015-07-26 09:33:10 +01:00
|
|
|
|
|
|
|
ln -s ${eclipse}/share $out/
|
|
|
|
'';
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Plugins
|
|
|
|
|
2015-07-30 22:36:14 +01:00
|
|
|
plugins = callPackage ./plugins.nix { };
|
2015-07-26 09:38:04 +01:00
|
|
|
|
2009-05-13 14:55:53 +01:00
|
|
|
}
|