nixpkgs/pkgs/development/libraries/libbson/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

24 lines
567 B
Nix

{ fetchFromGitHub, perl, 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 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;
};
}