2012-03-28 20:23:42 +01:00
|
|
|
{ stdenv, fetchurl, dbus_glib, libxml2, sqlite, telepathy_glib, pkgconfig
|
2014-01-25 23:17:18 +00:00
|
|
|
, intltool, libxslt, gobjectIntrospection, dbus_libs }:
|
2012-03-28 20:23:42 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
project = "telepathy-logger";
|
2013-02-23 21:20:42 +00:00
|
|
|
name = "${project}-0.8.0";
|
2012-03-28 20:23:42 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://telepathy.freedesktop.org/releases/${project}/${name}.tar.bz2";
|
2013-02-23 21:20:42 +00:00
|
|
|
sha256 = "18i00l8lnp5dghqmgmpxnn0is2a20pkisxy0sb78hnd2dz0z6xnl";
|
2012-03-28 20:23:42 +01:00
|
|
|
};
|
|
|
|
|
2015-10-13 13:33:08 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
|
2014-01-25 23:17:18 +00:00
|
|
|
|
|
|
|
buildInputs = [ dbus_glib libxml2 sqlite telepathy_glib pkgconfig intltool
|
2016-11-18 17:29:43 +00:00
|
|
|
gobjectIntrospection dbus_libs telepathy_glib.python ];
|
2012-03-28 20:23:42 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ libxslt ];
|
2012-03-28 20:23:42 +01:00
|
|
|
|
|
|
|
configureFlags = "--enable-call";
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Logger service for Telepathy framework";
|
|
|
|
homepage = http://telepathy.freedesktop.org/wiki/Logger ;
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = [ ];
|
2012-03-28 20:23:42 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu; # Arbitrary choice
|
|
|
|
};
|
|
|
|
}
|