Unverified Commit b7094a5a authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

Merge pull request #242923 from NixOS/php/extension/update-grpc

phpExtensions.grpc: 1.50.0 -> 1.56.0
parents 964cfcb7 0477cae5
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
{ buildPecl, zlib, lib }:
{ buildPecl
, zlib
, lib
}:

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

  version = "1.50.0";
  sha256 = "sha256-Lgvrw1HZywfvHTaF88T5dtKXu/lGR5xeS+TsqqNQCSc=";
  sha256 = "sha256-uzxYMUzExMBDtwv3FipOuuUHg0v1wqAUtn69jXAQnf4=";

  doCheck = true;
  checkTarget = "test";

  nativeBuildInputs = [ zlib ];

  meta = with lib; {
  meta = {
    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;
    license = lib.licenses.asl20;
    maintainers = lib.teams.php.members;
  };
}