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