telepathy_logger: 0.8.0 → 0.8.2

This commit is contained in:
Jan Tojnar 2017-12-18 04:58:21 +01:00
parent 3253b1f50a
commit 76f9a4d711
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -3,18 +3,20 @@
stdenv.mkDerivation rec {
project = "telepathy-logger";
name = "${project}-0.8.0";
name = "${project}-0.8.2";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/${project}/${name}.tar.bz2";
sha256 = "18i00l8lnp5dghqmgmpxnn0is2a20pkisxy0sb78hnd2dz0z6xnl";
};
NIX_CFLAGS_COMPILE = "-I${dbus_glib.dev}/include/dbus-1.0 -I${dbus_libs.dev}/include/dbus-1.0";
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs = [ dbus_glib libxml2 sqlite telepathy_glib intltool libxslt
gobjectIntrospection dbus_libs telepathy_glib.python (stdenv.lib.getLib gnome3.dconf) ];
nativeBuildInputs = [
makeWrapper pkgconfig intltool libxslt gobjectIntrospection
];
buildInputs = [
dbus_glib libxml2 sqlite telepathy_glib
dbus_libs telepathy_glib.python
];
configureFlags = "--enable-call";
@ -24,10 +26,11 @@ stdenv.mkDerivation rec {
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH"
'';
meta = {
meta = with stdenv.lib; {
description = "Logger service for Telepathy framework";
homepage = http://telepathy.freedesktop.org/wiki/Logger ;
maintainers = [ ];
platforms = stdenv.lib.platforms.gnu; # Arbitrary choice
homepage = https://telepathy.freedesktop.org/components/telepathy-logger/;
license = licenses.lgpl21;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.gnu; # Arbitrary choice
};
}