e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
29 lines
983 B
Nix
29 lines
983 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "grpc-gateway";
|
|
version = "2.19.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grpc-ecosystem";
|
|
repo = "grpc-gateway";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-mppN8twrOTIVK3TDQcv5fYZtXKPA34EWGPo31JxME1g=";
|
|
};
|
|
|
|
vendorHash = "sha256-R/V3J9vCSQppm59RCaJrDIS0Juff5htPl/GjTwhHEfQ=";
|
|
|
|
meta = with lib; {
|
|
description =
|
|
"A gRPC to JSON proxy generator plugin for Google Protocol Buffers";
|
|
longDescription = ''
|
|
This is a plugin for the Google Protocol Buffers compiler (protoc). It reads
|
|
protobuf service definitions and generates a reverse-proxy server which
|
|
translates a RESTful HTTP API into gRPC. This server is generated according to
|
|
the google.api.http annotations in the protobuf service definitions.
|
|
'';
|
|
homepage = "https://github.com/grpc-ecosystem/grpc-gateway";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ happyalu ];
|
|
};
|
|
}
|