summary refs log blame commit diff
path: root/pkgs/development/php-packages/protobuf/default.nix
blob: b24a8f025e50c9a97ee027756f227715fa4da694 (plain) (tree)
1
2
3
4
5
6
7
8
9
                          



                     

                                                                 
 
                          









                                                                                                        
{ buildPecl, lib, pcre2 }:

buildPecl {
  pname = "protobuf";

  version = "3.19.4";
  sha256 = "sha256-ijo+UZz+Hh3F8FUJmcUIbKBLkv4t4CWIrbRUfUp7Zbo=";

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