nixpkgs/pkgs/applications/networking/instant-messengers/telepathy/gabble/default.nix

28 lines
973 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxslt, telepathy-glib, libxml2, dbus-glib, dbus_daemon
, sqlite, libsoup, libnice, gnutls}:
stdenv.mkDerivation rec {
2017-12-18 03:57:36 +00:00
name = "telepathy-gabble-0.18.3";
src = fetchurl {
url = "http://telepathy.freedesktop.org/releases/telepathy-gabble/${name}.tar.gz";
2017-12-18 03:57:36 +00:00
sha256 = "1hl9k6jwn2afwwv7br16wfw5szdhwxqziba47xd8vjwvgrh19iwf";
};
2014-07-06 10:49:52 +01:00
nativeBuildInputs = [ pkgconfig libxslt ];
buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls telepathy-glib.python ]
++ stdenv.lib.optional doCheck dbus_daemon;
configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt";
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;
};
}