2021-06-28 23:13:55 +00:00
|
|
|
{ buildPecl, lib, pcre2 }:
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "protobuf";
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
version = "3.19.1";
|
|
|
|
sha256 = "sha256-kAPNPnvbCrmGITM3Hjpsn62TASV8eNCizFN8+1+I6bY=";
|
2020-10-16 20:44:37 +00:00
|
|
|
|
2021-06-06 07:54:09 +00:00
|
|
|
buildInputs = [ pcre2 ];
|
2020-10-16 20:44:37 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = ''
|
|
|
|
Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data.
|
|
|
|
'';
|
|
|
|
license = licenses.bsd3;
|
|
|
|
homepage = "https://developers.google.com/protocol-buffers/";
|
|
|
|
maintainers = teams.php.members;
|
|
|
|
};
|
|
|
|
}
|