protozero: init at 1.6.3
This commit is contained in:
parent
0982b78dde
commit
95a1054a48
22
pkgs/development/libraries/protozero/default.nix
Normal file
22
pkgs/development/libraries/protozero/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "protozero-${version}";
|
||||
version = "1.6.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mapbox";
|
||||
repo = "protozero";
|
||||
rev = "v${version}";
|
||||
sha256 = "0lalk6hp7hqfn4fhhl2zb214idwm4y8dj32vi383arckzmsryhiw";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -11772,6 +11772,8 @@ with pkgs;
|
||||
|
||||
protobufc = callPackage ../development/libraries/protobufc/1.3.nix { };
|
||||
|
||||
protozero = callPackage ../development/libraries/protozero { };
|
||||
|
||||
flatbuffers = callPackage ../development/libraries/flatbuffers { };
|
||||
|
||||
gnupth = callPackage ../development/libraries/pth { };
|
||||
|
Loading…
x
Reference in New Issue
Block a user