forked from mirrors/nixpkgs
28 lines
889 B
Nix
28 lines
889 B
Nix
{ lib, stdenv, fetchurl, libxslt, glib, libxml2, telepathy-glib, python2, avahi, libsoup
|
|
, libuuid, openssl, pcre, sqlite, pkg-config }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "telepathy-salut";
|
|
version = "0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-${version}.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 python2 ];
|
|
|
|
nativeBuildInputs = [ libxslt pkg-config ];
|
|
|
|
configureFlags = [ "--disable-avahi-tests" ];
|
|
|
|
meta = with lib; {
|
|
description = "Link-local XMPP connection manager for Telepathy";
|
|
platforms = platforms.gnu ++ platforms.linux; # Random choice
|
|
maintainers = [ ];
|
|
broken = true;
|
|
};
|
|
}
|