2021-06-08 12:50:40 +02:00
|
|
|
{ buildPecl, lib, pcre2 }:
|
2020-10-11 19:39:34 +02:00
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "protobuf";
|
|
|
|
|
2021-12-08 06:04:00 +01:00
|
|
|
version = "3.19.1";
|
|
|
|
sha256 = "sha256-kAPNPnvbCrmGITM3Hjpsn62TASV8eNCizFN8+1+I6bY=";
|
2020-10-11 19:39:34 +02:00
|
|
|
|
2021-06-03 15:06:06 +02:00
|
|
|
buildInputs = [ pcre2 ];
|
2020-10-11 19:39:34 +02: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;
|
|
|
|
};
|
|
|
|
}
|