2021-03-11 14:52:09 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, libxslt, telepathy-glib, python2, 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
|
|
|
|
2021-01-17 02:09:27 +00:00
|
|
|
nativeBuildInputs = [ pkg-config libxslt ];
|
2021-03-11 14:52:09 +00:00
|
|
|
buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls python2 ];
|
2018-07-17 21:11:16 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01: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;
|
2021-01-15 05:42:41 +00:00
|
|
|
platforms = lib.platforms.gnu ++ lib.platforms.linux;
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2008-01-28 19:49:44 +00:00
|
|
|
}
|