2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, makeDesktopItem, makeWrapper
|
|
|
|
, freetype, fontconfig, libX11, libXrender, zlib
|
2020-04-16 20:24:50 +01:00
|
|
|
, glib, gtk3, gtk2, libXtst, jdk, jdk8, gsettings-desktop-schemas
|
2018-03-07 20:29:51 +00:00
|
|
|
, webkitgtk ? null # for internal web browser
|
2018-07-21 01:44:44 +01:00
|
|
|
, buildEnv, 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
|
|
|
|
2020-06-18 23:49:27 +01:00
|
|
|
# https://download.eclipse.org/eclipse/downloads/ is the main place to
|
2017-10-18 17:11:14 +01:00
|
|
|
# find the downloads needed for new versions
|
|
|
|
|
2019-02-11 18:22:02 +00:00
|
|
|
let
|
|
|
|
platform_major = "4";
|
2020-06-18 23:49:27 +01:00
|
|
|
platform_minor = "16";
|
2020-03-23 13:18:15 +00:00
|
|
|
year = "2020";
|
2020-06-18 23:49:27 +01:00
|
|
|
month = "06";
|
|
|
|
timestamp = "${year}${month}040540";
|
2020-04-16 20:24:50 +01:00
|
|
|
gtk = gtk3;
|
2019-02-11 18:22:02 +00:00
|
|
|
in rec {
|
2010-05-09 15:17:21 +01:00
|
|
|
|
2020-04-16 20:24:50 +01:00
|
|
|
buildEclipse = callPackage ./build-eclipse.nix {
|
2017-03-04 19:21:25 +00:00
|
|
|
inherit stdenv makeDesktopItem freetype fontconfig libX11 libXrender zlib
|
2020-04-16 20:24:50 +01:00
|
|
|
jdk glib gtk libXtst gsettings-desktop-schemas webkitgtk
|
2017-03-14 10:14:29 +00:00
|
|
|
makeWrapper;
|
2017-03-04 19:21:25 +00:00
|
|
|
};
|
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
|
|
|
|
2019-02-11 16:27:13 +00:00
|
|
|
eclipse-cpp = buildEclipse {
|
2019-02-11 18:22:02 +00:00
|
|
|
name = "eclipse-cpp-${platform_major}.${platform_minor}";
|
2019-12-21 20:22:53 +00:00
|
|
|
description = "Eclipse IDE for C/C++ Developers";
|
2011-04-11 21:29:47 +01:00
|
|
|
src =
|
2019-02-11 18:22:02 +00:00
|
|
|
fetchurl {
|
2020-06-18 23:49:27 +01:00
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/${year}-${month}/R/eclipse-cpp-${year}-${month}-R-linux-gtk-x86_64.tar.gz";
|
|
|
|
sha512 = "0vfxzsvfv9zmd0ckrdpziijzskh13g8kgk8ibkwmhmqmj14a3visk6yvn5q2s0knkswl1zy9arinw0mxvqh72dfj63vwc01vhp06lyr";
|
2019-02-11 18:22:02 +00:00
|
|
|
};
|
2015-03-18 15:30:01 +00:00
|
|
|
};
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Modeling
|
2011-04-11 21:29:47 +01:00
|
|
|
|
2019-02-11 16:27:13 +00:00
|
|
|
eclipse-modeling = buildEclipse {
|
2019-02-11 18:22:02 +00:00
|
|
|
name = "eclipse-modeling-${platform_major}.${platform_minor}";
|
2016-10-20 16:27:01 +01:00
|
|
|
description = "Eclipse Modeling Tools";
|
|
|
|
src =
|
2019-02-11 18:22:02 +00:00
|
|
|
fetchurl {
|
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/${year}-${month}/R/eclipse-modeling-${year}-${month}-R-linux-gtk-x86_64.tar.gz";
|
2020-06-18 23:49:27 +01:00
|
|
|
sha512 = "29nr1x3fgdw5ygrppfma6yi1iaqvad24jyb58sag735z1nz4ymajcwakg52mlv3s19d4w8cxpskh1r459mwz7j769qplymspqifvlkd";
|
2019-02-11 18:22:02 +00:00
|
|
|
};
|
2016-10-20 16:27:01 +01:00
|
|
|
};
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Platform
|
2016-10-20 19:04:38 +01:00
|
|
|
|
2019-02-11 16:27:13 +00:00
|
|
|
eclipse-platform = buildEclipse {
|
2019-02-11 18:22:02 +00:00
|
|
|
name = "eclipse-platform-${platform_major}.${platform_minor}";
|
|
|
|
description = "Eclipse Platform ${year}-${month}";
|
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops${platform_major}/R-${platform_major}.${platform_minor}-${timestamp}/eclipse-platform-${platform_major}.${platform_minor}-linux-gtk-x86_64.tar.gz";
|
2020-06-18 23:49:27 +01:00
|
|
|
sha512 = "2pm4xam0jn9x34k1hr5rn67fpvc6snlkpcfn4bzdcf2xjv9f3dr2039mkcrhri5nv2bj6fkbai6aga6fmmrb3na33b7ir7sqlqqn61b";
|
2019-02-11 18:22:02 +00:00
|
|
|
};
|
2018-09-27 17:58:22 +01:00
|
|
|
};
|
|
|
|
|
2016-10-21 09:44:31 +01:00
|
|
|
### Eclipse Scala SDK
|
2016-09-08 08:56:17 +01:00
|
|
|
|
2020-04-16 20:24:50 +01:00
|
|
|
eclipse-scala-sdk =
|
|
|
|
buildEclipse.override { jdk = jdk8; gtk = gtk2; } {
|
|
|
|
name = "eclipse-scala-sdk-4.7.0";
|
|
|
|
description = "Eclipse IDE for Scala Developers";
|
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = "https://downloads.typesafe.com/scalaide-pack/4.7.0-vfinal-oxygen-212-20170929/scala-SDK-4.7.0-vfinal-2.12-linux.gtk.x86_64.tar.gz";
|
|
|
|
sha256 = "1n5w2a7mh9ajv6fxcas1gpgwb04pdxbr9v5dzr67gsz5bhahq4ya";
|
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
|
|
|
|
2019-02-11 16:27:13 +00:00
|
|
|
eclipse-sdk = buildEclipse {
|
2019-02-11 18:22:02 +00:00
|
|
|
name = "eclipse-sdk-${platform_major}.${platform_minor}";
|
|
|
|
description = "Eclipse ${year}-${month} Classic";
|
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops${platform_major}/R-${platform_major}.${platform_minor}-${timestamp}/eclipse-SDK-${platform_major}.${platform_minor}-linux-gtk-x86_64.tar.gz";
|
2020-06-18 23:49:27 +01:00
|
|
|
sha512 = "195c07yabmi2a42qxfmpbv6ychpj15bbpgyp40s1pcdb3p875vcqjinq9dqy2sixzwjhfdrggpvwihav87rkih9arzmk2s4cm31mjqd";
|
2019-02-11 18:22:02 +00:00
|
|
|
};
|
2018-09-27 17:58:22 +01:00
|
|
|
};
|
|
|
|
|
2018-10-14 13:02:23 +01:00
|
|
|
### Eclipse Java
|
|
|
|
|
2019-02-11 16:27:13 +00:00
|
|
|
eclipse-java = buildEclipse {
|
2019-02-11 18:22:02 +00:00
|
|
|
name = "eclipse-java-${platform_major}.${platform_minor}";
|
2018-10-14 13:02:23 +01:00
|
|
|
description = "Eclipse IDE for Java Developers";
|
|
|
|
src =
|
2019-02-11 18:22:02 +00:00
|
|
|
fetchurl {
|
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/${year}-${month}/R/eclipse-java-${year}-${month}-R-linux-gtk-x86_64.tar.gz";
|
2020-06-18 23:49:27 +01:00
|
|
|
sha512 = "3n8jllgxarrxgz16n7zb4bgaqxk0m9frcxrgdxvy25ar2iw8js4q4ir3cc20y4ri3ii74rf3jy6n4ndhm57miwqh4p2wqzhfjlinirb";
|
2019-02-11 18:22:02 +00:00
|
|
|
};
|
2018-10-14 13:02:23 +01:00
|
|
|
};
|
|
|
|
|
2020-01-28 09:36:19 +00:00
|
|
|
### Eclipse Committers
|
|
|
|
|
|
|
|
eclipse-committers = buildEclipse {
|
|
|
|
name = "eclipse-committers-${platform_major}.${platform_minor}";
|
|
|
|
description = "Eclipse IDE for Eclipse Committers and Eclipse Platform Plugin Developers";
|
|
|
|
src =
|
|
|
|
fetchurl {
|
|
|
|
url = "https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/${year}-${month}/R/eclipse-committers-${year}-${month}-R-linux-gtk-x86_64.tar.gz";
|
|
|
|
sha512 = "1l0gc7srpvn3r0yrbrp1pjv1a3n1y7q5fqww5fmzyw1d6j3hjkqj74c9bff16579cpf7z6d4wmj6kr7z89p0ignrx319gc8p0hivi1y";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
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
|
|
|
}
|