Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }:
2
3buildGoModule rec {
4 pname = "grpc-client-cli";
5 version = "1.18.0";
6
7 src = fetchFromGitHub {
8 owner = "vadimi";
9 repo = "grpc-client-cli";
10 rev = "v${version}";
11 sha256 = "sha256-gpTJObgLbH+4fBnBrI6YA3Y4ENuGHV6xP7oHbSFQyEw=";
12 };
13
14 vendorHash = "sha256-FuUxCm/p8ke55kMjsmHwZTJMWO4cQZZ/B1RDpdxUr8U=";
15
16 meta = with lib; {
17 description = "generic gRPC command line client";
18 maintainers = with maintainers; [ Philipp-M ];
19 homepage = "https://github.com/vadimi/grpc-client-cli";
20 license = licenses.mit;
21 };
22}