nixpkgs/pkgs/development/libraries/protozero/default.nix

23 lines
582 B
Nix
Raw Normal View History

2018-10-28 09:42:19 +00:00
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "protozero-${version}";
version = "1.6.7";
2018-10-28 09:42:19 +00:00
src = fetchFromGitHub {
owner = "mapbox";
repo = "protozero";
rev = "v${version}";
sha256 = "1ryvn3iwxiaih3mvyy45nbwxnhzfc8vby0xh9m6d6fpakhcpf6s3";
2018-10-28 09:42:19 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "Minimalistic protocol buffer decoder and encoder in C++";
homepage = "https://github.com/mapbox/protozero";
license = with licenses; [ bsd2 asl20 ];
maintainers = with maintainers; [ das-g ];
};
}