mongoc: fix propagated libraries for libtool

libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)
This commit is contained in:
Orivej Desh 2017-12-20 09:54:02 +00:00
parent d3a375fe58
commit 95637269f0

View File

@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig which perl ];
buildInputs = [ openssl zlib snappy ];
propagatedBuildInputs = [ libbson ];
buildInputs = [ openssl zlib ];
propagatedBuildInputs = [ libbson snappy ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "The official C client library for MongoDB";