nixpkgs/pkgs/development/libraries/libbson/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
577 B
Nix

{ fetchFromGitHub, perl, stdenv, cmake }:
stdenv.mkDerivation rec {
name = "libbson-${version}";
version = "1.6.1";
src = fetchFromGitHub {
owner = "mongodb";
repo = "libbson";
rev = version;
sha256 = "1ilxbv4yjgf0vfzaa8lzn40hv5x1737ny2g2q1wmm8bl39m0viiw";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ perl ];
meta = with stdenv.lib; {
description = "A C Library for parsing, editing, and creating BSON documents";
homepage = https://github.com/mongodb/libbson;
license = licenses.asl20;
platforms = platforms.all;
};
}