mongoc: fix propagated libraries for libtool

libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)

Changed files
+4 -2
pkgs
development
libraries
mongoc
+4 -2
pkgs/development/libraries/mongoc/default.nix
···
};
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";