nixpkgs/pkgs/development/libraries/mongoc/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

24 lines
725 B
Nix

{ stdenv, fetchzip, autoconf, automake114x, perl, pkgconfig, libbson, libtool
, openssl, which
}:
stdenv.mkDerivation rec {
name = "mongoc-${version}";
version = "1.5.4";
src = fetchzip {
url = "https://github.com/mongodb/mongo-c-driver/releases/download/${version}/mongo-c-driver-${version}.tar.gz";
sha256 = "0xjk3k76n8yz7zi6a0dx1wgpsvvn5qhpzrapdw4v3h49hwf7rc5q";
};
propagatedBuildInputs = [ libbson ];
buildInputs = [ autoconf automake114x libtool openssl perl pkgconfig which ];
meta = with stdenv.lib; {
description = "The official C client library for MongoDB";
homepage = https://github.com/mongodb/mongo-c-driver;
license = licenses.asl20;
platforms = platforms.all;
};
}