2022-06-16 17:23:12 +00:00
|
|
|
{ buildPecl, zlib, lib }:
|
|
|
|
|
|
|
|
buildPecl {
|
|
|
|
pname = "grpc";
|
|
|
|
|
2022-08-12 12:06:08 +00:00
|
|
|
version = "1.48.0";
|
|
|
|
sha256 = "sha256-S0zLSRNV+TjSjmOkdt+S1RCSY+pj/+4eAklhZGHiaWM=";
|
2022-06-16 17:23:12 +00:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|