libbson:1.1.10 -> 1.6.1

libbson: Removed un-needed deps
This commit is contained in:
ndowens 2017-03-14 19:03:41 -05:00 committed by Robert Helgesson
parent 14315cf4f5
commit ca8a0e3c80
No known key found for this signature in database
GPG Key ID: C3DB11069E65DC86
1 changed files with 9 additions and 9 deletions

View File

@ -1,18 +1,18 @@
{ autoconf, automake114x, fetchzip, libtool, perl, stdenv, which }:
let
version = "1.1.10";
in
{ fetchFromGitHub, perl, stdenv, cmake }:
stdenv.mkDerivation rec {
name = "libbson-${version}";
version = "1.6.1";
src = fetchzip {
url = "https://github.com/mongodb/libbson/releases/download/${version}/libbson-${version}.tar.gz";
sha256 = "0zzca7zqvxf89fq7ji9626q8nnqyyh0dnmbk4xijzr9sq485xz0s";
src = fetchFromGitHub {
owner = "mongodb";
repo = "libbson";
rev = version;
sha256 = "1ilxbv4yjgf0vfzaa8lzn40hv5x1737ny2g2q1wmm8bl39m0viiw";
};
buildInputs = [ autoconf automake114x libtool perl which ];
nativeBuildInputs = [ cmake ];
buildInputs = [ perl ];
meta = with stdenv.lib; {
description = "A C Library for parsing, editing, and creating BSON documents";