mongoc: 1.5.4 -> 1.7.0

This commit is contained in:
Robin Gloster 2017-08-12 19:25:39 +02:00
parent 220c5377e8
commit beace037d0
No known key found for this signature in database
GPG Key ID: 5E4C836C632C2882

@ -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";