Merge pull request #11796 from nckx/fix-gdata

gnome3_*.libgdata: add `nss` dependency
This commit is contained in:
lethalman 2015-12-18 10:15:51 +01:00
commit 12b64621fd

View File

@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
configureFlags = [ "--enable-nss" ]; configureFlags = [ "--enable-nss" ];
postInstall = ''
substituteInPlace $out/lib/liboauth.la \
--replace "-lnss3" "-L${nss}/lib -lnss3"
'';
meta = with stdenv.lib; { meta = with stdenv.lib; {
platforms = platforms.linux; platforms = platforms.linux;
description = "C library implementing the OAuth secure authentication protocol"; description = "C library implementing the OAuth secure authentication protocol";