a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
29 lines
985 B
Nix
29 lines
985 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "grpc-gateway";
|
|
version = "2.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "grpc-ecosystem";
|
|
repo = "grpc-gateway";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-NOcV3XrSFeb/LYzeZQ0M1l1l4TkC+fVqAXCDUTaMN3c=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-zYKRWJ09SnE0Y9iahTyODas/04an8x9w+rsY0x4/NRM=";
|
|
|
|
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 ];
|
|
};
|
|
}
|