nixpkgs/pkgs/applications/editors/eclipse/default.nix

244 lines
10 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, makeDesktopItem, makeWrapper
, freetype, fontconfig, libX11, libXext, libXrender, zlib
, glib, gtk3, libXtst, jdk, gsettings-desktop-schemas
, webkitgtk ? null # for internal web browser
, buildEnv, writeText, runCommand
, callPackage
}:
assert stdenv ? glibc;
# http://download.eclipse.org/eclipse/downloads/ is the main place to
# find the downloads needed for new versions
rec {
buildEclipse = import ./build-eclipse.nix {
inherit stdenv makeDesktopItem freetype fontconfig libX11 libXrender zlib
jdk glib gtk3 libXtst gsettings-desktop-schemas webkitgtk
makeWrapper;
};
2016-10-21 08:44:31 +00:00
### Eclipse CPP
2016-10-20 18:04:38 +00:00
2017-07-02 15:58:15 +00:00
eclipse-cpp = eclipse-cpp-47; # always point to latest
2017-07-02 15:58:15 +00:00
eclipse-cpp-47 = buildEclipse {
name = "eclipse-cpp-4.7.0";
description = "Eclipse IDE for C/C++ Developers, Oxygen release";
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
2017-07-02 15:58:15 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk-x86_64.tar.gz;
sha512 = "813c791e739d7d0e2ab242a5bacadca135bbeee20ef97aa830353cd90f63fa6e9c89cfcc6aadf635c742befe035bd6e3f15103013f63c419f6144e86ebde3ed1";
}
2016-10-20 18:04:38 +00:00
else if stdenv.system == "i686-linux" then
fetchurl {
2017-07-02 15:58:15 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-cpp-oxygen-R-linux-gtk.tar.gz;
sha512 = "2b50f4a00306a89cda1aaaa606e62285cacbf93464a9dd3f3319dca3e2c578b802e685de6f78e5e617d269e21271188effe73d41f491a6de946e28795d82db8a";
2015-03-18 15:30:01 +00:00
}
2016-10-20 18:04:38 +00:00
else throw "Unsupported system: ${stdenv.system}";
2015-03-18 15:30:01 +00:00
};
2016-10-20 18:04:38 +00:00
eclipse-cpp-37 = buildEclipse {
name = "eclipse-cpp-3.7";
description = "Eclipse IDE for C/C++ Developers";
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
2016-10-28 21:04:07 +00: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 18:04:38 +00:00
sha256 = "14ppc9g9igzvj1pq7jl01vwhzb66nmzbl9wsdl1sf3xnwa9wnqk3";
}
else
fetchurl {
2016-10-28 21:04:07 +00: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 18:04:38 +00:00
sha256 = "1cvg1vgyazrkinwzlvlf0dpl197p4784752srqybqylyj5psdi3b";
};
};
2016-10-20 18:04:38 +00:00
eclipse_cpp_37 = eclipse-cpp-37; # backward compatibility, added 2016-01-30
2016-10-21 08:44:31 +00:00
### Eclipse Modeling
2017-07-02 15:58:29 +00:00
eclipse-modeling = eclipse-modeling-47; # always point to latest
2017-07-02 15:58:29 +00:00
eclipse-modeling-47 = buildEclipse {
name = "eclipse-modeling-4.7";
description = "Eclipse Modeling Tools";
src =
if stdenv.system == "x86_64-linux" then
fetchurl {
2017-07-02 15:58:29 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-modeling-oxygen-R-linux-gtk-x86_64.tar.gz;
sha512 = "3b9a7ad4b5d6b77fbdd64e8d323e0adb6c2904763ad042b374b4d87cef8607408cb407e395870fc755d58c0c800e20818adcf456ebe193d76cede16c5fe12271";
}
else
fetchurl {
2017-07-02 15:58:29 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/technology/epp/downloads/release/oxygen/R/eclipse-modeling-oxygen-R-linux-gtk.tar.gz;
sha512 = "b8597c1dec117e69c72a5e1a53e09b1f81a7c9de86ed7e71a9d007664603202df301745f186ded02b2e76410345863e80a2ba40867d6848e5375601289999206";
};
};
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 {
2016-10-28 21:04:07 +00: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;
sha1 = "e96f5f006298f68476f4a15a2be8589158d5cc61";
}
else
fetchurl {
2016-10-28 21:04:07 +00: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;
sha1 = "696377895bb26445de39d82a916b7e69edb1d939";
};
};
eclipse_modeling_36 = eclipse-modeling-36; # backward compatibility, added 2016-01-30
2016-10-21 08:44:31 +00:00
### Eclipse Platform
2016-10-20 18:04:38 +00:00
2017-06-28 18:07:49 +00:00
eclipse-platform = eclipse-platform-47; # always point to latest
2017-01-02 14:53:02 +00:00
eclipse-platform-46 = buildEclipse {
name = "eclipse-platform-4.6.2";
description = "Eclipse Platform Neon 2";
sources = {
"x86_64-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.2-201611241400/eclipse-platform-4.6.2-linux-gtk-x86_64.tar.gz;
sha256 = "1fmpirjkp210angyfz3nr5jp58snjy6784zkkbmdxkiyg9kg2wqq";
};
"i686-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.2-201611241400/eclipse-platform-4.6.2-linux-gtk.tar.gz;
sha256 = "0274g6ypiqsqkch10868ygbm6avc5pa57saz9wd196kdivl1bdpm";
};
};
};
2017-06-28 18:07:49 +00:00
eclipse-platform-47 = buildEclipse {
name = "eclipse-platform-4.7.2";
2017-06-28 18:07:49 +00:00
description = "Eclipse Platform Oxygen";
sources = {
"x86_64-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.7.2-201711300510/eclipse-platform-4.7.2-linux-gtk-x86_64.tar.gz;
sha256 = "1zl406brvhh25dkd2pi1kvz5386gzkybpwik03aadpzmjrbm9730";
2017-06-28 18:07:49 +00:00
};
"i686-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.7.2-201711300510/eclipse-platform-4.7.2-linux-gtk.tar.gz;
sha256 = "0v0i13ah8d8zmcv0ip1ia5ifnfnl76aibiqpv4q4lih5d1qsa79d";
2017-06-28 18:07:49 +00:00
};
};
};
2016-10-21 08:44:31 +00:00
### Eclipse Scala SDK
eclipse-scala-sdk = eclipse-scala-sdk-441; # always point to latest
2016-10-20 20:08:27 +00:00
eclipse-scala-sdk-441 = buildEclipse {
name = "eclipse-scala-sdk-4.4.1";
2016-10-20 18:04:38 +00:00
description = "Eclipse IDE for Scala Developers";
2012-07-28 19:54:40 +00:00
src =
if stdenv.system == "x86_64-linux" then
2016-10-20 18:04:38 +00:00
fetchurl { # tested
2016-10-28 21:04:07 +00: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 20:08:27 +00:00
sha256 = "4c2d1ac68384e12a11a851cf0fc7757aea087eba69329b21d539382a65340d27";
2012-07-28 19:54:40 +00:00
}
else
2016-10-20 18:04:38 +00:00
fetchurl { # untested
2016-10-28 21:04:07 +00: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 20:08:27 +00:00
sha256 = "35383cb09567187e14a30c15de9fd9aa0eef99e4bbb342396ce3acd11fb5cbac";
2014-06-28 17:47:35 +00:00
};
};
2016-10-21 08:44:31 +00:00
### Eclipse SDK
2017-06-28 18:08:36 +00:00
eclipse-sdk = eclipse-sdk-47; # always point to latest
2016-08-04 01:25:29 +00:00
eclipse-sdk-46 = buildEclipse {
2017-01-01 20:27:15 +00:00
name = "eclipse-sdk-4.6.2";
description = "Eclipse Neon 2 Classic";
2016-08-04 01:25:29 +00:00
sources = {
"x86_64-linux" = fetchurl {
2017-01-01 20:27:15 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.2-201611241400/eclipse-SDK-4.6.2-linux-gtk-x86_64.tar.gz;
sha256 = "0g3nk1gcz178j8xk6nblkfsaysm8gq8101383fx60x6w25rdfgjb";
2016-08-04 01:25:29 +00:00
};
"i686-linux" = fetchurl {
2017-01-01 20:27:15 +00:00
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.6.2-201611241400/eclipse-SDK-4.6.2-linux-gtk.tar.gz;
sha256 = "09wlkcxs5h3j8habqxgr4all99vkgmyixc0vr9dj3qs0kl85k5mz";
2016-08-04 01:25:29 +00:00
};
};
};
2015-11-06 14:26:34 +00:00
2017-06-28 18:08:36 +00:00
eclipse-sdk-47 = buildEclipse {
name = "eclipse-sdk-4.7.2";
2017-06-28 18:08:36 +00:00
description = "Eclipse Oxygen Classic";
sources = {
"x86_64-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.7.2-201711300510/eclipse-SDK-4.7.2-linux-gtk-x86_64.tar.gz;
sha256 = "1j5d72rkl3lq3rpnvq1spsa0zlzbmbkgadfhbz868sqqbavrwbzv";
2017-06-28 18:08:36 +00:00
};
"i686-linux" = fetchurl {
url = https://www.eclipse.org/downloads/download.php?r=1&nf=1&file=/eclipse/downloads/drops4/R-4.7.2-201711300510/eclipse-SDK-4.7.2-linux-gtk.tar.gz;
sha256 = "117436ni79v1kiync8b3wkfkb8a5rv3sbqp6qnwbmanwkvnyvfvc";
2017-06-28 18:08:36 +00:00
};
};
};
2016-10-20 18:04:38 +00: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 21:04:07 +00: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 18:04:38 +00:00
sha256 = "0nf4nv7awhp1k8b1hjb7chpjyjrqnyszsjbc4dlk9phpjv3j4wg5";
2016-01-20 19:28:53 +00:00
};
"i686-linux" = fetchurl {
2016-10-28 21:04:07 +00: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 18:04:38 +00:00
sha256 = "1isn7i45l9kyn2yx6vm88jl1gnxph8ynank0aaa218cg8kdygk7j";
2016-01-20 19:28:53 +00:00
};
};
};
2016-10-20 18:04:38 +00:00
eclipse_sdk_37 = eclipse-sdk-37; # backward compatibility, added 2016-01-30
2016-01-20 19:28:53 +00:00
2016-10-21 08:44:31 +00:00
### Environments
2016-03-19 10:45:04 +00:00
2016-10-21 08:44:31 +00:00
# Function that assembles a complete Eclipse environment from an
# Eclipse package and list of Eclipse plugins.
eclipseWithPlugins = { eclipse, plugins ? [], jvmArgs ? [] }:
let
# Gather up the desired plugins.
pluginEnv = buildEnv {
name = "eclipse-plugins";
paths =
with stdenv.lib;
filter (x: x ? isEclipsePlugin) (closePropagation plugins);
};
# 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 ]; } ''
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
makeWrapper ${eclipse}/bin/eclipse $out/bin/eclipse \
--add-flags "--launcher.ini $out/etc/eclipse.ini"
ln -s ${eclipse}/share $out/
'';
2016-10-21 08:44:31 +00:00
### Plugins
plugins = callPackage ./plugins.nix { };
}