Skip to content

Commit

Permalink
mongoc: fix propagated libraries for libtool
Browse files Browse the repository at this point in the history
libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)
  • Loading branch information
orivej committed Dec 20, 2017
1 parent d3a375f commit 9563726
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkgs/development/libraries/mongoc/default.nix
Expand Up @@ -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";
Expand Down

0 comments on commit 9563726

Please sign in to comment.