02cf88bb76
GitOrigin-RevId: c4a0efdd5a728e20791b8d8d2f26f90ac228ee8d
20 lines
505 B
Nix
20 lines
505 B
Nix
{ buildPecl, zlib, lib }:
|
|
|
|
buildPecl {
|
|
pname = "grpc";
|
|
|
|
version = "1.48.0";
|
|
sha256 = "sha256-S0zLSRNV+TjSjmOkdt+S1RCSY+pj/+4eAklhZGHiaWM=";
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
|
|
nativeBuildInputs = [ zlib ];
|
|
|
|
meta = with lib; {
|
|
description = "A high performance, open source, general RPC framework that puts mobile and HTTP/2 first.";
|
|
license = licenses.asl20;
|
|
homepage = "https://github.com/grpc/grpc/tree/master/src/php/ext/grpc";
|
|
maintainers = teams.php.members;
|
|
};
|
|
}
|