Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.05 20 lines 505 B view raw
1{ buildPecl, zlib, lib }: 2 3buildPecl { 4 pname = "grpc"; 5 6 version = "1.50.0"; 7 sha256 = "sha256-Lgvrw1HZywfvHTaF88T5dtKXu/lGR5xeS+TsqqNQCSc="; 8 9 doCheck = true; 10 checkTarget = "test"; 11 12 nativeBuildInputs = [ zlib ]; 13 14 meta = with lib; { 15 description = "A high performance, open source, general RPC framework that puts mobile and HTTP/2 first."; 16 license = licenses.asl20; 17 homepage = "https://github.com/grpc/grpc/tree/master/src/php/ext/grpc"; 18 maintainers = teams.php.members; 19 }; 20}