summaryrefslogtreecommitdiff
path: root/pkgs/development/php-packages/protobuf/default.nix
blob: 0367dd4fc533edb6f09a6bad205b682fbacc034d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  buildPecl,
  lib,
  pcre2,
}:

buildPecl {
  pname = "protobuf";

  version = "3.21.9";
  sha256 = "05zlq9k6c45wj1286850nl31024ik158jnj1f5kskr1pchknnsf3";

  buildInputs = [ pcre2 ];

  meta = {
    description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data";
    license = lib.licenses.bsd3;
    homepage = "https://developers.google.com/protocol-buffers/";
    teams = [ lib.teams.php ];
  };
}