Skip to content

Commit 9418365

Browse files
committedSep 28, 2017
mongoc: don't use bundled zlib & snappy
(cherry picked from commit bc5ec7b)
1 parent 481fe76 commit 9418365

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
 

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

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ stdenv, fetchzip, perl, pkgconfig, libbson
2-
, openssl, which
2+
, openssl, which, zlib, snappy
33
}:
44

55
stdenv.mkDerivation rec {
@@ -11,8 +11,9 @@ stdenv.mkDerivation rec {
1111
sha256 = "1vnnk3pwbcmwva1010bl111kdcdx3yb2w7j7a78hhvrm1k9r1wp8";
1212
};
1313

14+
nativeBuildInputs = [ pkgconfig which perl ];
15+
buildInputs = [ openssl zlib snappy ];
1416
propagatedBuildInputs = [ libbson ];
15-
buildInputs = [ openssl perl pkgconfig which ];
1617

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

0 commit comments

Comments
 (0)
Please sign in to comment.