mongoc: fix propagated libraries for libtool

libmongoc-1.0.la links to snappy (ld -l) but does not contain full path (ld -L)
wip/yesman
Orivej Desh 7 years ago
parent d3a375fe58
commit 95637269f0
  1. 6
      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";

Loading…
Cancel
Save