mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
21 lines
467 B
Nix
21 lines
467 B
Nix
{
|
|
buildPecl,
|
|
lib,
|
|
pcre2,
|
|
}:
|
|
|
|
buildPecl {
|
|
pname = "protobuf";
|
|
|
|
version = "3.21.9";
|
|
sha256 = "05zlq9k6c45wj1286850nl31024ik158jnj1f5kskr1pchknnsf3";
|
|
|
|
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;
|
|
};
|
|
}
|