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

buildPecl {
  pname = "grpc";

  version = "1.48.1";
  sha256 = "sha256-dOIvjq+DPmBecu933z1DK8bZlkffUy2XLxYYdAU4WeA=";

  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;
  };
}