summary refs log tree commit diff
path: root/pkgs/development/php-packages/grpc/default.nix
blob: d3bae3ea9c76671ca26240a1b4628e4f45343948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ buildPecl
, zlib
, lib
}:

buildPecl {
  pname = "grpc";
  version = "1.56.0";

  sha256 = "sha256-uzxYMUzExMBDtwv3FipOuuUHg0v1wqAUtn69jXAQnf4=";

  doCheck = true;
  checkTarget = "test";

  nativeBuildInputs = [ zlib ];

  meta = {
    description = "A high performance, open source, general RPC framework that puts mobile and HTTP/2 first.";
    homepage = "https://github.com/grpc/grpc/tree/master/src/php/ext/grpc";
    license = lib.licenses.asl20;
    maintainers = lib.teams.php.members;
  };
}