telepathy-salut: use standard pkgconfig

Building glib with selinux support caused the build to fail due to selinux being
specificed in `Required.private` in gio-2.0.pc. `pkgconfigUpstream` isn't
patched to handle `Required.private` properly.
This commit is contained in:
Tor Hedin Brønner 2018-09-18 17:43:34 +02:00 committed by Jan Tojnar
parent 16f31fb8e4
commit ef67f0d2c8
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

@ -1,5 +1,5 @@
{ stdenv, fetchurl, libxslt, glib, libxml2, telepathy-glib, avahi, libsoup
, libuuid, openssl, pcre, sqlite, pkgconfigUpstream }:
, libuuid, openssl, pcre, sqlite, pkgconfig }:
stdenv.mkDerivation rec {
pname = "telepathy-salut";
@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
buildInputs = [ glib libxml2 telepathy-glib avahi libsoup libuuid openssl
sqlite pcre telepathy-glib.python ];
nativeBuildInputs = [ libxslt pkgconfigUpstream ];
nativeBuildInputs = [ libxslt pkgconfig ];
configureFlags = [ "--disable-avahi-tests" ];