1{
2 buildPecl,
3 lib,
4 pcre2,
5}:
6
7buildPecl {
8 pname = "protobuf";
9
10 version = "3.21.9";
11 sha256 = "05zlq9k6c45wj1286850nl31024ik158jnj1f5kskr1pchknnsf3";
12
13 buildInputs = [ pcre2 ];
14
15 meta = with lib; {
16 description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data";
17 license = licenses.bsd3;
18 homepage = "https://developers.google.com/protocol-buffers/";
19 teams = [ teams.php ];
20 };
21}