about summary refs log tree commit diff
path: root/pkgs/development/libraries/mongoc/default.nix
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-12-20 09:54:02 +0000
committerOrivej Desh <orivej@gmx.fr>2017-12-20 09:56:40 +0000
commit95637269f003a93a32cb22a33a34e3d55e9534c4 (patch)
treeb1669078aa975131d6002f17b1158d222ebde711 /pkgs/development/libraries/mongoc/default.nix
parentd3a375fe584fcdb2533b946db03f614edb688128 (diff)
mongoc: fix propagated libraries for libtool
libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)
Diffstat (limited to 'pkgs/development/libraries/mongoc/default.nix')
-rw-r--r--pkgs/development/libraries/mongoc/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mongoc/default.nix b/pkgs/development/libraries/mongoc/default.nix
index 4cba89d9206fe..2a933ef784013 100644
--- a/pkgs/development/libraries/mongoc/default.nix
+++ b/pkgs/development/libraries/mongoc/default.nix
@@ -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";