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

28 lines
1004 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxslt, telepathy-glib, libxml2, dbus-glib, dbus_daemon
, sqlite, libsoup, libnice, gnutls}:
stdenv.mkDerivation rec {
name = "telepathy-gabble-0.18.4";
src = fetchurl {
url = "https://telepathy.freedesktop.org/releases/telepathy-gabble/${name}.tar.gz";
sha256 = "174nlkqm055vrhv11gy73m20jbsggcb0ddi51c7s9m3j5ibr2p0i";
};
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;
platforms = stdenv.lib.platforms.gnu ++ stdenv.lib.platforms.linux;
};
}