nixpkgs/pkgs/development/php-packages/grpc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
505 B
Nix
Raw Normal View History

2022-05-18 17:18:25 +00:00
{ buildPecl, zlib, lib }:
buildPecl {
pname = "grpc";
2022-10-22 22:29:14 +00:00
version = "1.50.0";
sha256 = "sha256-Lgvrw1HZywfvHTaF88T5dtKXu/lGR5xeS+TsqqNQCSc=";
2022-05-18 17:18:25 +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;
};
}