2018-07-17 21:11:16 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxslt, telepathy-glib, libxml2, dbus-glib, dbus
|
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 {
|
2018-03-28 06:34:26 +01:00
|
|
|
name = "telepathy-gabble-0.18.4";
|
2008-01-28 19:49:44 +00:00
|
|
|
|
2009-04-22 00:18:09 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 19:43:35 +01:00
|
|
|
url = "https://telepathy.freedesktop.org/releases/telepathy-gabble/${name}.tar.gz";
|
2018-03-28 06:34:26 +01:00
|
|
|
sha256 = "174nlkqm055vrhv11gy73m20jbsggcb0ddi51c7s9m3j5ibr2p0i";
|
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-07-17 21:11:16 +01:00
|
|
|
buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls telepathy-glib.python ];
|
|
|
|
|
|
|
|
checkInputs = [ dbus.daemon ];
|
2012-03-13 19:06:54 +00:00
|
|
|
|
2018-07-25 22:44:21 +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;
|
2018-04-30 23:47:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2008-01-28 19:49:44 +00:00
|
|
|
}
|