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:
parent
d3a375fe58
commit
95637269f0
@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig which perl ];
|
nativeBuildInputs = [ pkgconfig which perl ];
|
||||||
buildInputs = [ openssl zlib snappy ];
|
buildInputs = [ openssl zlib ];
|
||||||
propagatedBuildInputs = [ libbson ];
|
propagatedBuildInputs = [ libbson snappy ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "The official C client library for MongoDB";
|
description = "The official C client library for MongoDB";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user