nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 21 lines 455 B view raw
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 = { 16 description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data"; 17 license = lib.licenses.bsd3; 18 homepage = "https://developers.google.com/protocol-buffers/"; 19 teams = [ lib.teams.php ]; 20 }; 21}