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 ];
|
||||
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";
|
||||
|
Loading…
Reference in New Issue
Block a user