Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ buildPecl, lib, pcre2 }: 2 3buildPecl { 4 pname = "protobuf"; 5 6 version = "3.21.9"; 7 sha256 = "05zlq9k6c45wj1286850nl31024ik158jnj1f5kskr1pchknnsf3"; 8 9 buildInputs = [ pcre2 ]; 10 11 meta = with lib; { 12 description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data."; 13 license = licenses.bsd3; 14 homepage = "https://developers.google.com/protocol-buffers/"; 15 maintainers = teams.php.members; 16 }; 17}