2017-04-30 09:20:08 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, lz4, freetype, fontconfig
|
2018-02-24 13:12:44 +00:00
|
|
|
, fribidi, SDL2, SDL, libGLU_combined, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio
|
2017-04-30 09:20:08 +00:00
|
|
|
, libsndfile, xorg, libdrm, libxkbcommon, udev, utillinux, dbus, bullet, luajit
|
|
|
|
, python27Packages, openjpeg, doxygen, expat, harfbuzz, jbig2dec, librsvg
|
|
|
|
, dbus_libs, alsaLib, poppler, ghostscript, libraw, libspectre, xineLib, libwebp
|
2017-04-30 09:35:59 +00:00
|
|
|
, curl, libinput, systemd, writeText
|
2017-04-30 09:20:08 +00:00
|
|
|
}:
|
2014-09-15 19:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "efl-${version}";
|
2018-03-20 07:49:58 +00:00
|
|
|
version = "1.20.7";
|
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-03-20 07:49:58 +00:00
|
|
|
sha256 = "1zkn5ix81xck3n84dxvkjh4alwc6zj8x989d0zqi5c6ppijvgadh";
|
2014-09-15 19:54:02 +00:00
|
|
|
};
|
|
|
|
|
2016-05-28 12:54:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2018-02-24 13:12:44 +00:00
|
|
|
buildInputs = [ openssl zlib lz4 freetype fontconfig SDL libGLU_combined
|
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
|
2016-08-22 22:39:23 +00:00
|
|
|
harfbuzz jbig2dec librsvg dbus_libs 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
|
|
|
|
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"
|
|
|
|
'';
|
2014-12-28 10:40:01 +00:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|