2017-04-30 09:20:08 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, lz4, freetype, fontconfig
|
2018-03-28 13:23:42 +00:00
|
|
|
, fribidi, SDL2, SDL, libGL, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio
|
2018-07-17 20:11:16 +00:00
|
|
|
, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, bullet, luajit
|
2017-04-30 09:20:08 +00:00
|
|
|
, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg
|
2018-07-17 20:11:16 +00:00
|
|
|
, dbus, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp
|
2018-10-02 21:43:19 +00:00
|
|
|
, curl, libinput, systemd, mesa_noglu, writeText, gtk3
|
2017-04-30 09:20:08 +00:00
|
|
|
}:
|
2014-09-15 19:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "efl-${version}";
|
2018-09-18 01:12:42 +00:00
|
|
|
version = "1.21.1";
|
2016-06-22 19:54:14 +00:00
|
|
|
|
2014-09-15 19:54:02 +00:00
|
|
|
src = fetchurl {
|
2016-01-23 22:04:22 +00:00
|
|
|
url = "http://download.enlightenment.org/rel/libs/efl/${name}.tar.xz";
|
2018-09-18 01:12:42 +00:00
|
|
|
sha256 = "0a5907h896pvpix7a6idc2fspzy6d78xrzf84k8y9fyvnd14nxs4";
|
2014-09-15 19:54:02 +00:00
|
|
|
};
|
|
|
|
|
2018-10-02 21:43:19 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gtk3 ];
|
2016-05-28 12:54:23 +00:00
|
|
|
|
2018-03-28 13:23:42 +00:00
|
|
|
buildInputs = [ openssl zlib lz4 freetype fontconfig SDL libGL mesa_noglu
|
2016-08-22 22:39:23 +00:00
|
|
|
giflib libpng libtiff glib gst_all_1.gstreamer gst_all_1.gst-plugins-base gst_all_1.gst-plugins-good
|
2015-09-15 09:26:18 +00:00
|
|
|
gst_all_1.gst-libav libpulseaudio libsndfile xorg.libXcursor xorg.printproto
|
2017-08-22 17:56:47 +00:00
|
|
|
xorg.libX11 udev systemd ];
|
2014-12-17 09:32:48 +00:00
|
|
|
|
2016-08-16 20:51:21 +00:00
|
|
|
propagatedBuildInputs = [ libxkbcommon python27Packages.dbus-python dbus libjpeg xorg.libXcomposite
|
2015-09-15 09:26:18 +00:00
|
|
|
xorg.libXdamage xorg.libXinerama xorg.libXp xorg.libXtst xorg.libXi xorg.libXext
|
|
|
|
bullet xorg.libXScrnSaver xorg.libXrender xorg.libXfixes xorg.libXrandr
|
|
|
|
xorg.libxkbfile xorg.libxcb xorg.xcbutilkeysyms openjpeg doxygen expat luajit
|
2018-07-19 04:09:01 +00:00
|
|
|
harfbuzz jbig2dec librsvg dbus alsaLib poppler ghostscript libraw libspectre xineLib libwebp curl libdrm
|
2017-08-22 17:56:47 +00:00
|
|
|
libinput utillinux fribidi SDL2 ];
|
2014-12-17 09:32:48 +00:00
|
|
|
|
2018-08-19 21:35:11 +00:00
|
|
|
# as of 1.21.0 compilation will fail due to -Werror=format-security
|
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
2014-12-28 05:09:59 +00:00
|
|
|
# ac_ct_CXX must be set to random value, because then it skips some magic which does alternative searching for g++
|
2017-04-21 17:49:28 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--enable-sdl"
|
|
|
|
"--enable-drm"
|
|
|
|
"--enable-elput"
|
|
|
|
"--with-opengl=full"
|
|
|
|
"--enable-image-loader-jp2k"
|
|
|
|
"--enable-xinput22"
|
|
|
|
"--enable-multisense"
|
|
|
|
"--enable-liblz4"
|
|
|
|
"--enable-systemd"
|
|
|
|
"--enable-image-loader-webp"
|
|
|
|
"--enable-harfbuzz"
|
|
|
|
"--enable-xine"
|
|
|
|
"--enable-fb"
|
|
|
|
"--disable-tslib"
|
|
|
|
"--with-systemdunitdir=$out/systemd/user"
|
|
|
|
"ac_ct_CXX=foo"
|
|
|
|
];
|
2014-09-15 19:54:02 +00:00
|
|
|
|
2015-05-16 14:42:40 +00:00
|
|
|
patches = [ ./efl-elua.patch ];
|
|
|
|
|
2017-04-30 09:35:59 +00:00
|
|
|
# bin/edje_cc creates $HOME/.run, which would break build of reverse dependencies.
|
|
|
|
setupHook = writeText "setupHook.sh" ''
|
|
|
|
export HOME="$TEMPDIR"
|
|
|
|
'';
|
|
|
|
|
2014-09-15 19:54:02 +00:00
|
|
|
preConfigure = ''
|
2015-05-16 14:42:40 +00:00
|
|
|
export LD_LIBRARY_PATH="$(pwd)/src/lib/eina/.libs:$LD_LIBRARY_PATH"
|
2017-04-30 09:35:59 +00:00
|
|
|
source "$setupHook"
|
2014-09-15 19:54:02 +00:00
|
|
|
'';
|
|
|
|
|
2017-05-02 11:47:36 +00:00
|
|
|
NIX_CFLAGS_COMPILE = [ "-DluaL_reg=luaL_Reg" ]; # needed since luajit-2.1.0-beta3
|
|
|
|
|
2015-05-16 14:42:40 +00:00
|
|
|
postInstall = ''
|
|
|
|
substituteInPlace "$out/share/elua/core/util.lua" --replace '$out' "$out"
|
|
|
|
modules=$(for i in "$out/include/"*/; do printf ' -I''${includedir}/'`basename $i`; done)
|
|
|
|
substituteInPlace "$out/lib/pkgconfig/efl.pc" --replace 'Cflags: -I''${includedir}/efl-1' \
|
|
|
|
'Cflags: -I''${includedir}/eina-1/eina'"$modules"
|
2018-10-02 21:43:19 +00:00
|
|
|
|
|
|
|
# build icon cache
|
|
|
|
gtk-update-icon-cache "$out"/share/icons/Enlightenment-X
|
2015-05-16 14:42:40 +00:00
|
|
|
'';
|
2014-12-28 10:40:01 +00:00
|
|
|
|
2018-03-27 16:54:44 +00:00
|
|
|
# EFL applications depend on libcurl, although it is linked at
|
|
|
|
# runtime by hand in code (it is dlopened).
|
|
|
|
postFixup = ''
|
|
|
|
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/lib/libecore_con.so
|
|
|
|
'';
|
|
|
|
|
2015-05-16 14:42:40 +00:00
|
|
|
enableParallelBuilding = true;
|
2014-09-15 19:54:02 +00:00
|
|
|
|
|
|
|
meta = {
|
2016-08-22 22:39:23 +00:00
|
|
|
description = "Enlightenment foundation libraries";
|
2014-09-15 19:54:02 +00:00
|
|
|
homepage = http://enlightenment.org/;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
2017-04-21 17:49:28 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
2014-09-15 19:54:02 +00:00
|
|
|
};
|
|
|
|
}
|