2018-02-25 02:23:58 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxslt, telepathy-glib, libxml2, dbus-glib, dbus_daemon
|
2016-11-18 17:29:43 +00:00
|
|
|
, sqlite, libsoup, libnice, gnutls}:
|
2008-01-28 19:49:44 +00:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-12-18 03:57:36 +00:00
|
|
|
name = "telepathy-gabble-0.18.3";
|
2008-01-28 19:49:44 +00:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2018-03-23 15:30:53 +00:00
|
|
|
url = "http://telepathy.freedesktop.org/releases/telepathy-gabble/${name}.tar.gz";
|
2017-12-18 03:57:36 +00:00
|
|
|
sha256 = "1hl9k6jwn2afwwv7br16wfw5szdhwxqziba47xd8vjwvgrh19iwf";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2008-01-28 19:49:44 +00:00
|
|
|
|
2014-07-06 10:49:52 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig libxslt ];
|
2018-02-25 02:23:58 +00:00
|
|
|
buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls telepathy-glib.python ]
|
2014-06-19 22:19:22 +01:00
|
|
|
++ stdenv.lib.optional doCheck dbus_daemon;
|
2012-03-13 19:06:54 +00:00
|
|
|
|
2015-07-31 00:30:15 +01:00
|
|
|
configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt";
|
2013-02-23 21:20:42 +00:00
|
|
|
|
2014-06-19 22:19:22 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-12-18 03:57:36 +00:00
|
|
|
homepage = https://telepathy.freedesktop.org/components/telepathy-gabble/;
|
2014-07-06 10:49:52 +01:00
|
|
|
description = "Jabber/XMPP connection manager for the Telepathy framework";
|
2017-12-18 03:57:36 +00:00
|
|
|
license = licenses.lgpl21Plus;
|
2014-07-06 10:49:52 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu;
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2008-01-28 19:49:44 +00:00
|
|
|
}
|