about summary refs log tree commit diff
path: root/pkgs/development/php-packages/protobuf/default.nix
blob: 2d4a1af9af6c6bb35fe5276081f242eac18f705e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ buildPecl, lib, pcre2 }:

buildPecl {
  pname = "protobuf";

  version = "3.19.1";
  sha256 = "sha256-kAPNPnvbCrmGITM3Hjpsn62TASV8eNCizFN8+1+I6bY=";

  buildInputs = [ pcre2 ];

  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;
  };
}