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

29 lines
971 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libxslt, telepathy-glib, python2, libxml2, dbus-glib, dbus
, 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";
};
nativeBuildInputs = [ pkg-config libxslt ];
buildInputs = [ libxml2 dbus-glib sqlite libsoup libnice telepathy-glib gnutls python2 ];
checkInputs = [ dbus.daemon ];
2018-07-25 22:44:21 +01:00
configureFlags = [ "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" ];
enableParallelBuilding = true;
doCheck = true;
meta = with lib; {
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;
};
}