4451d32a36
svn path=/nixpkgs/trunk/; revision=30820
30 lines
1 KiB
Nix
30 lines
1 KiB
Nix
{ stdenv, fetchurl, pkgconfig, zlib, libjpeg, expat, ecore, eina, evas
|
|
, dbus_libs }:
|
|
stdenv.mkDerivation rec {
|
|
name = "e_dbus-${version}";
|
|
version = "1.1.0";
|
|
src = fetchurl {
|
|
url = "http://download.enlightenment.org/releases/${name}.tar.gz";
|
|
sha256 = "10y68f023jjq6dinjc0brpr41acnd7clxgb0q1j2i9isalx1473z";
|
|
};
|
|
buildInputs = [ pkgconfig zlib libjpeg expat ecore eina evas ];
|
|
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
|
|
};
|
|
}
|