aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/mongoc
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2017-08-12 19:25:39 +0200
committerRobin Gloster <mail@glob.in>2017-08-12 19:25:39 +0200
commitbeace037d0f77b83064f0e0beca0f29d4a2ac7f4 (patch)
treeca1d576471500ecd1742ab8d2f10dc79b50879b7 /pkgs/development/libraries/mongoc
parent220c5377e87d488680e8ca06bd5bbde00d6722f7 (diff)
mongoc: 1.5.4 -> 1.7.0
Diffstat (limited to 'pkgs/development/libraries/mongoc')
-rw-r--r--pkgs/development/libraries/mongoc/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/mongoc/default.nix b/pkgs/development/libraries/mongoc/default.nix
index 5275f4ecb737..67d2bdf1559b 100644
--- a/pkgs/development/libraries/mongoc/default.nix
+++ b/pkgs/development/libraries/mongoc/default.nix
@@ -1,18 +1,18 @@
-{ stdenv, fetchzip, autoconf, automake114x, perl, pkgconfig, libbson, libtool
+{ stdenv, fetchzip, perl, pkgconfig, libbson
, openssl, which
}:
stdenv.mkDerivation rec {
name = "mongoc-${version}";
- version = "1.5.4";
+ version = "1.7.0";
src = fetchzip {
url = "https://github.com/mongodb/mongo-c-driver/releases/download/${version}/mongo-c-driver-${version}.tar.gz";
- sha256 = "0xjk3k76n8yz7zi6a0dx1wgpsvvn5qhpzrapdw4v3h49hwf7rc5q";
+ sha256 = "1s0j7wmgdkgawzd75psh5ml35lkx68h6pimqrnfp2z1ggzcwajgn";
};
propagatedBuildInputs = [ libbson ];
- buildInputs = [ autoconf automake114x libtool openssl perl pkgconfig which ];
+ buildInputs = [ openssl perl pkgconfig which ];
meta = with stdenv.lib; {
description = "The official C client library for MongoDB";