567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
22 lines
455 B
Nix
22 lines
455 B
Nix
{
|
|
buildPecl,
|
|
lib,
|
|
pcre2,
|
|
}:
|
|
|
|
buildPecl {
|
|
pname = "protobuf";
|
|
|
|
version = "3.21.9";
|
|
sha256 = "05zlq9k6c45wj1286850nl31024ik158jnj1f5kskr1pchknnsf3";
|
|
|
|
buildInputs = [ pcre2 ];
|
|
|
|
meta = {
|
|
description = "Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data";
|
|
license = lib.licenses.bsd3;
|
|
homepage = "https://developers.google.com/protocol-buffers/";
|
|
teams = [ lib.teams.php ];
|
|
};
|
|
}
|