2011-12-10 19:11:37 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, expat, ecore, eina, evas
|
|
|
|
, dbus_libs }:
|
2011-09-27 00:28:35 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "e_dbus-${version}";
|
2012-03-25 15:50:39 +02:00
|
|
|
version = "1.2.0-alpha";
|
2011-09-27 00:28:35 +02:00
|
|
|
src = fetchurl {
|
2012-03-25 15:50:39 +02:00
|
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.bz2";
|
|
|
|
sha256 = "1kky76v7yydsjihgi1hbwpyqhdmbxmxj2dw4p7kiqbl67dmsjhxg";
|
2011-09-27 00:28:35 +02:00
|
|
|
};
|
2011-12-10 19:11:37 +01:00
|
|
|
buildInputs = [ pkgconfig zlib libjpeg expat ecore eina evas ];
|
2011-09-27 00:28:35 +02:00
|
|
|
propagatedBuildInputs = [ dbus_libs ];
|
|
|
|
configureFlags = ''
|
|
|
|
--disable-edbus-test
|
|
|
|
--disable-edbus-test-client
|
|
|
|
--disable-edbus-notify-send
|
|
|
|
--disable-edbus-notify-test
|
|
|
|
'';
|
|
|
|
meta = {
|
|
|
|
description = "Enlightenment's D-Bus wrapping and glue layer library";
|
|
|
|
longDescription = ''
|
|
|
|
Enlightenment's E_Dbus is a set of wrappers around DBus APIs by
|
|
|
|
third party, so they can be easily used by EFL applications,
|
|
|
|
automatically providing Ecore/main loop integration, as well as
|
|
|
|
Eina data types.
|
|
|
|
'';
|
|
|
|
homepage = http://enlightenment.org/;
|
|
|
|
license = stdenv.lib.licenses.bsd2; # not sure
|
|
|
|
};
|
|
|
|
}
|