2016-08-22 22:39:23 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, openssl, libjpeg, zlib, lz4, freetype, fontconfig, fribidi, SDL2, SDL, mesa, giflib, libpng, libtiff, glib, gst_all_1, libpulseaudio, 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, curl, libinput, systemd }:
|
2014-09-15 19:54:02 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "efl-${version}";
|
2016-12-09 23:52:36 +00:00
|
|
|
version = "1.18.4";
|
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";
|
2016-12-09 23:52:36 +00:00
|
|
|
sha256 = "09c0ajszjarcs6d62zlgnf1aha2f921mfr0gxg6nwza36xzc1srr";
|
2014-09-15 19:54:02 +00:00
|
|
|
};
|
|
|
|
|
2016-05-28 12:54:23 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2016-08-22 22:39:23 +00:00
|
|
|
buildInputs = [ openssl zlib lz4 freetype fontconfig fribidi SDL2 SDL mesa
|
|
|
|
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
|
2016-03-08 08:57:58 +00:00
|
|
|
xorg.libX11 udev utillinux 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
|
2015-03-02 22:22:15 +00:00
|
|
|
libinput ];
|
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++
|
2016-08-22 22:39:23 +00:00
|
|
|
configureFlags = [ "--enable-sdl" "--enable-drm" "--enable-elput" "--with-opengl=full"
|
|
|
|
"--enable-image-loader-jp2k" "--enable-xinput22" "--enable-multisense" "--enable-liblz4" "--enable-systemd"
|
2014-12-17 09:32:48 +00:00
|
|
|
"--enable-image-loader-webp" "--enable-harfbuzz" "--enable-xine" "--enable-fb"
|
2015-05-16 14:42:40 +00:00
|
|
|
"--disable-tslib" "--with-systemdunitdir=$out/systemd/user"
|
2014-12-28 05:09:59 +00:00
|
|
|
"ac_ct_CXX=foo" ];
|
2014-09-15 19:54:02 +00:00
|
|
|
|
2015-05-16 14:42:40 +00:00
|
|
|
patches = [ ./efl-elua.patch ];
|
|
|
|
|
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"
|
2014-09-15 19:54:02 +00:00
|
|
|
'';
|
|
|
|
|
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/;
|
2015-05-16 14:42:40 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ matejc tstrobel ftrvxmtrx ];
|
2014-09-15 19:54:02 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
license = stdenv.lib.licenses.lgpl3;
|
|
|
|
};
|
|
|
|
}
|