nixpkgs/pkgs/applications/editors/eclipse/build-eclipse.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
2.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, makeDesktopItem, freetype, fontconfig, libX11, libXrender
, zlib, jdk, glib, glib-networking, gtk, libXtst, libsecret, gsettings-desktop-schemas, webkitgtk
2020-11-19 18:27:15 +00:00
, makeWrapper, perl, ... }:
2015-11-06 13:41:35 +00:00
{ name, src ? builtins.getAttr stdenv.hostPlatform.system sources, sources ? null, description, productVersion }:
2015-11-06 13:41:35 +00:00
stdenv.mkDerivation rec {
inherit name src;
desktopItem = makeDesktopItem {
name = "Eclipse";
exec = "eclipse";
icon = "eclipse";
comment = "Integrated Development Environment";
desktopName = "Eclipse IDE";
genericName = "Integrated Development Environment";
categories = [ "Development" ];
2015-11-06 13:41:35 +00:00
};
nativeBuildInputs = [ makeWrapper perl ];
buildInputs = [
fontconfig freetype glib gsettings-desktop-schemas gtk jdk libX11
libXrender libXtst libsecret zlib
2021-01-15 13:21:58 +00:00
] ++ lib.optional (webkitgtk != null) webkitgtk;
2015-11-06 13:41:35 +00:00
buildCommand = ''
# Unpack tarball.
mkdir -p $out
tar xfvz $src -C $out
# Patch binaries.
2023-01-15 12:34:14 +00:00
interpreter="$(cat $NIX_BINTOOLS/nix-support/dynamic-linker)"
2015-11-06 13:41:35 +00:00
libCairo=$out/eclipse/libcairo-swt.so
patchelf --set-interpreter $interpreter $out/eclipse/eclipse
2021-01-15 13:21:58 +00:00
[ -f $libCairo ] && patchelf --set-rpath ${lib.makeLibraryPath [ freetype fontconfig libX11 libXrender zlib ]} $libCairo
2015-11-06 13:41:35 +00:00
# Create wrapper script. Pass -configuration to store
# settings in ~/.eclipse/org.eclipse.platform_<version> rather
# than ~/.eclipse/org.eclipse.platform_<version>_<number>.
productId=$(sed 's/id=//; t; d' $out/eclipse/.eclipseproduct)
makeWrapper $out/eclipse/eclipse $out/bin/eclipse \
--prefix PATH : ${jdk}/bin \
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath ([ glib gtk libXtst libsecret ] ++ lib.optional (webkitgtk != null) webkitgtk)} \
--prefix GIO_EXTRA_MODULES : "${glib-networking}/lib/gio/modules" \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" \
--add-flags "-configuration \$HOME/.eclipse/''${productId}_${productVersion}/configuration"
2015-11-06 13:41:35 +00:00
# Create desktop item.
mkdir -p $out/share/applications
cp ${desktopItem}/share/applications/* $out/share/applications
mkdir -p $out/share/pixmaps
ln -s $out/eclipse/icon.xpm $out/share/pixmaps/eclipse.xpm
2020-11-19 18:27:15 +00:00
# ensure eclipse.ini does not try to use a justj jvm, as those aren't compatible with nix
perl -i -p0e 's|-vm\nplugins/org.eclipse.justj.*/jre/bin.*\n||' $out/eclipse/eclipse.ini
2015-11-06 13:41:35 +00:00
''; # */
meta = {
homepage = "https://www.eclipse.org/";
2015-11-06 13:41:35 +00:00
inherit description;
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
2023-01-15 12:34:14 +00:00
platforms = [ "x86_64-linux" "aarch64-linux" ];
2015-11-06 13:41:35 +00:00
};
}