Skip to content

Commit 9563726

Browse files
committedDec 20, 2017
mongoc: fix propagated libraries for libtool
libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)
1 parent d3a375f commit 9563726

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎pkgs/development/libraries/mongoc/default.nix

+4-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ stdenv.mkDerivation rec {
1212
};
1313

1414
nativeBuildInputs = [ pkgconfig which perl ];
15-
buildInputs = [ openssl zlib snappy ];
16-
propagatedBuildInputs = [ libbson ];
15+
buildInputs = [ openssl zlib ];
16+
propagatedBuildInputs = [ libbson snappy ];
17+
18+
enableParallelBuilding = true;
1719

1820
meta = with stdenv.lib; {
1921
description = "The official C client library for MongoDB";

0 commit comments

Comments
 (0)
Please sign in to comment.