about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telepathy
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-12-18 04:58:21 +0100
committerJan Tojnar <jtojnar@gmail.com>2017-12-18 05:23:25 +0100
commit76f9a4d7111a362035ee741cd08ea22a27bbd6bc (patch)
tree4a857b3b3b467406af7ba340535a90c6949fa0eb /pkgs/applications/networking/instant-messengers/telepathy
parent3253b1f50a4a3fc8e12b50bb92615d50bf484a2d (diff)
telepathy_logger: 0.8.0 → 0.8.2
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telepathy')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix23
1 files changed, 13 insertions, 10 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
index 0bd6c2e5f2b50..9206aea5c5426 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/logger/default.nix
@@ -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
   };
 }