depot/third_party/nixpkgs/pkgs/development/tools/misc/grpc-client-cli/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

22 lines
583 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "grpc-client-cli";
version = "1.20.0";
src = fetchFromGitHub {
owner = "vadimi";
repo = "grpc-client-cli";
rev = "v${version}";
sha256 = "sha256-MqzuVPY/IuJWfdzHvC/keTe5yi0aMhvq8SoKDlRAI0w=";
};
vendorHash = "sha256-eRT1xMy9lsvF5sUF9jyDUWfNyLThIDTksaXff7xqyic=";
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;
};
}