Skip to content

Commit

Permalink
mongoc: don't use bundled zlib & snappy
Browse files Browse the repository at this point in the history
(cherry picked from commit bc5ec7b)
  • Loading branch information
fpletz committed Sep 28, 2017
1 parent 481fe76 commit 9418365
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/libraries/mongoc/default.nix
@@ -1,5 +1,5 @@
{ stdenv, fetchzip, perl, pkgconfig, libbson
, openssl, which
, openssl, which, zlib, snappy
}:

stdenv.mkDerivation rec {
Expand All @@ -11,8 +11,9 @@ stdenv.mkDerivation rec {
sha256 = "1vnnk3pwbcmwva1010bl111kdcdx3yb2w7j7a78hhvrm1k9r1wp8";
};

nativeBuildInputs = [ pkgconfig which perl ];
buildInputs = [ openssl zlib snappy ];
propagatedBuildInputs = [ libbson ];
buildInputs = [ openssl perl pkgconfig which ];

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

0 comments on commit 9418365

Please sign in to comment.