My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libbson/default.nix

23 lines
567 B

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