3
0
Fork 0
forked from mirrors/nixpkgs

telepathy_salut: fix build, add myself as maintainer

This commit is contained in:
Luca Bruno 2016-08-02 22:00:17 +02:00
parent b7e9207a67
commit 2cce7a064e

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, libxslt, glib, libxml2, telepathy_glib, avahi, libsoup
, libuuid, openssl, sqlite, pkgconfigUpstream }:
, libuuid, openssl, pcre, sqlite, pkgconfigUpstream }:
stdenv.mkDerivation rec {
pname = "telepathy-salut";
@ -10,15 +10,17 @@ stdenv.mkDerivation rec {
sha256 = "13k112vrr3zghzr03pnbqc1id65qvpj0sn0virlbf4dmr2511fbh";
};
# pcre needed because https://github.com/NixOS/nixpkgs/pull/15046
buildInputs = [ glib libxml2 telepathy_glib avahi libsoup libuuid openssl
sqlite ];
sqlite pcre ];
nativeBuildInputs = [ libxslt pkgconfigUpstream ];
configureFlags = "--disable-avahi-tests";
meta = {
meta = with stdenv.lib; {
description = "Link-local XMPP connection manager for Telepathy";
platforms = stdenv.lib.platforms.gnu; # Random choice
platforms = platforms.gnu; # Random choice
maintainers = [ maintainers.lethalman ];
};
}