nixpkgs/pkgs/tools/networking/grpcui/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
757 B
Nix
Raw Normal View History

{ buildGoModule, fetchFromGitHub, lib }:
2019-07-12 04:44:54 +03:00
buildGoModule rec {
pname = "grpcui";
2022-02-16 12:50:51 +03:00
version = "1.3.0";
2019-07-12 04:44:54 +03:00
src = fetchFromGitHub {
owner = "fullstorydev";
repo = pname;
rev = "v${version}";
2022-02-16 12:50:51 +03:00
sha256 = "sha256-XDVt5fml2zYXOcZYXnxxGu4uaUA75DnRlFkbcc6tDag=";
2019-07-12 04:44:54 +03:00
};
2019-09-16 23:57:29 +03:00
2022-02-16 12:50:51 +03:00
vendorSha256 = "sha256-jHNjvh4rpZdQ/RC9gN3KXnuOLkJX8Ow5GV+Qwfyvx1o=";
2019-07-12 04:44:54 +03:00
doCheck = false;
2020-06-27 12:20:00 +03:00
subPackages = [ "cmd/grpcui" ];
2021-08-26 09:45:51 +03:00
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
2020-06-27 12:20:00 +03:00
meta = with lib; {
2019-07-12 04:44:54 +03:00
description = "An interactive web UI for gRPC, along the lines of postman";
homepage = "https://github.com/fullstorydev/grpcui";
license = licenses.mit;
maintainers = with maintainers; [ pradyuman ];
platforms = platforms.linux ++ platforms.darwin;
};
2020-06-27 12:20:00 +03:00
}