about summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-06-19 23:19:22 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-06-19 23:44:50 +0200
commit87ef13ee80595f492217f958b090789f55d286ae (patch)
tree71c56dc498b1b7f1fdbca13c15e09759e6671a2a /pkgs/applications/networking/instant-messengers
parent5c482db0dd701004ab02acdf48484057667bf0cb (diff)
downloadnixlib-87ef13ee80595f492217f958b090789f55d286ae.tar
nixlib-87ef13ee80595f492217f958b090789f55d286ae.tar.gz
nixlib-87ef13ee80595f492217f958b090789f55d286ae.tar.bz2
nixlib-87ef13ee80595f492217f958b090789f55d286ae.tar.lz
nixlib-87ef13ee80595f492217f958b090789f55d286ae.tar.xz
nixlib-87ef13ee80595f492217f958b090789f55d286ae.tar.zst
nixlib-87ef13ee80595f492217f958b090789f55d286ae.zip
telepathy-gabble: major update 0.17.2 -> 0.18.2
Also doCheck, enableParallelBuilding, and add meta attributes.
Diffstat (limited to 'pkgs/applications/networking/instant-messengers')
-rw-r--r--pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix17
1 files changed, 12 insertions, 5 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix b/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
index b3036037f7fa..7f9ffa8f5d90 100644
--- a/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
+++ b/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix
@@ -1,20 +1,27 @@
-{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, libxml2, dbus_glib
+{ stdenv, fetchurl, pkgconfig, libxslt, telepathy_glib, libxml2, dbus_glib, dbus_daemon
 , sqlite, libsoup, libnice, gnutls }:
 
 stdenv.mkDerivation rec {
-  name = "telepathy-gabble-0.17.2";
+  name = "telepathy-gabble-0.18.2";
 
   src = fetchurl {
     url = "${meta.homepage}/releases/telepathy-gabble/${name}.tar.gz";
-    sha256 = "137sslbgh0326lmwihcr2ybljgq9mzsx5wnciilpx884si22wpk8";
+    sha256 = "00ag32ccbj0hmy41rb0fg9gp40m7zbq45r4yijnyslk2mpkvg7c9";
   };
 
   nativeBuildInputs = [pkgconfig libxslt];
-  buildInputs = [ libxml2 dbus_glib sqlite libsoup libnice telepathy_glib gnutls ];
+  buildInputs = [ libxml2 dbus_glib sqlite libsoup libnice telepathy_glib gnutls ]
+    ++ stdenv.lib.optional doCheck dbus_daemon;
 
   configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt";
 
-  meta = {
+  enableParallelBuilding = true;
+  doCheck = true;
+
+  meta = with stdenv.lib; {
+    description = "A Jabber/XMPP connection manager for the Telepathy framework";
     homepage = http://telepathy.freedesktop.org;
+    license = licenses.lgpl21Plus;
+    platforms = platforms.unix;
   };
 }