2022-06-26 10:26:21 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "grpc-client-cli";
|
2022-12-17 10:02:37 +00:00
|
|
|
version = "1.16.0";
|
2022-06-26 10:26:21 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vadimi";
|
|
|
|
repo = "grpc-client-cli";
|
|
|
|
rev = "v${version}";
|
2022-12-17 10:02:37 +00:00
|
|
|
sha256 = "sha256-tvpLsiZvGneabAoTewIEnCh+0lzbr7DNepjXGg7azLc=";
|
2022-06-26 10:26:21 +00:00
|
|
|
};
|
|
|
|
|
2022-12-17 10:02:37 +00:00
|
|
|
vendorSha256 = "sha256-NFVDDOejclWA2WQr7CHX1CUNu+Lh5jukroSrkxby8Ag=";
|
2022-06-26 10:26:21 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "generic gRPC command line client";
|
|
|
|
maintainers = with maintainers; [ Philipp-M ];
|
|
|
|
homepage = "https://github.com/vadimi/grpc-client-cli";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|