unityhub: 3.10.0 -> 3.11.0 (#376840)
[NixPkgs.git] / pkgs / by-name / kt / ktop / package.nix
blob964a44fffe1d2735813d4eff8724de330eac89dc
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "ktop";
9   version = "0.3.7";
10   excludedPackages = [ ".ci" ];
12   src = fetchFromGitHub {
13     owner = "vladimirvivien";
14     repo = pname;
15     rev = "v${version}";
16     hash = "sha256-oxyEkDY53HjBgjWRajlcg+8Kx092lyLkPgOJleioO7o=";
17   };
19   vendorHash = "sha256-MLIcTHWo7lsqtAqH8naSvpS013t8KBVPRbch+CfeUNk=";
20   ldflags = [
21     "-s"
22     "-w"
23     "-X github.com/vladimirvivien/ktop/buildinfo.Version=v${version}"
24   ];
26   postInstall = ''
27     rm $out/bin/hack
28   '';
30   doCheck = false;
32   meta = with lib; {
33     description = "Top-like tool for your Kubernetes cluster";
34     mainProgram = "ktop";
35     longDescription = ''
36       Following the tradition of Unix/Linux top tools, ktop is a tool that displays useful metrics information about nodes, pods, and other workload resources running in a Kubernetes cluster.
37     '';
38     homepage = "https://github.com/vladimirvivien/ktop/";
39     license = licenses.asl20;
40     maintainers = with maintainers; [ qjoly ];
41   };