5aa4b19946
Refs: e6754980264fe927320d5ff2dbd24ca4fac9a160 1e9cc5b9844ef603fe160e9f671178f96200774f 793a2fe1e8bb886ca2096c5904e1193dc3268b6d c19cf65261639f749012454932a532aa7c681e4b f6544d618f30fae0bc4798c4387a8c7c9c047a7c
27 lines
896 B
Nix
27 lines
896 B
Nix
{ stdenv, fetchurl, libxslt, glib, libxml2, telepathy-glib, avahi, libsoup
|
|
, libuuid, openssl, pcre, sqlite, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "telepathy-salut";
|
|
name = "${pname}-0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://telepathy.freedesktop.org/releases/${pname}/${name}.tar.gz";
|
|
sha256 = "13k112vrr3zghzr03pnbqc1id65qvpj0sn0virlbf4dmr2511fbh";
|
|
};
|
|
|
|
# pcre needed because https://github.com/NixOS/nixpkgs/pull/15046
|
|
buildInputs = [ glib libxml2 telepathy-glib avahi libsoup libuuid openssl
|
|
sqlite pcre telepathy-glib.python ];
|
|
|
|
nativeBuildInputs = [ libxslt pkgconfig ];
|
|
|
|
configureFlags = [ "--disable-avahi-tests" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Link-local XMPP connection manager for Telepathy";
|
|
platforms = platforms.gnu ++ platforms.linux; # Random choice
|
|
maintainers = [ maintainers.lethalman ];
|
|
broken = true;
|
|
};
|
|
}
|