2021-06-08 11:50:40 +01:00
|
|
|
{ buildPecl, lib, pcre2 }:
|
2020-10-11 18:39:34 +01:00
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "protobuf";
|
|
|
|
|
2022-02-13 06:59:43 +00:00
|
|
|
version = "3.19.4";
|
|
|
|
sha256 = "sha256-ijo+UZz+Hh3F8FUJmcUIbKBLkv4t4CWIrbRUfUp7Zbo=";
|
2020-10-11 18:39:34 +01:00
|
|
|
|
2021-06-03 14:06:06 +01:00
|
|
|
buildInputs = [ pcre2 ];
|
2020-10-11 18:39:34 +01: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;
|
|
|
|
};
|
|
|
|
}
|