mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
commit
12ab363306
33
pkgs/applications/networking/cluster/ktop/default.nix
Normal file
33
pkgs/applications/networking/cluster/ktop/default.nix
Normal file
@ -0,0 +1,33 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "ktop";
|
||||
version = "0.3.5";
|
||||
excludedPackages = [".ci"];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vladimirvivien";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-nkIRVt2kqsE9QBYvvHmupohnzH+OBcwWwV16rMePw4I=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-IiAMmHOq69WMT2B1q9ZV2fGDnLr7AbRm1P7ACSde2FE=";
|
||||
ldflags = [ "-s" "-w" "-X github.com/vladimirvivien/ktop/buildinfo.Version=v${version}" ];
|
||||
|
||||
postInstall = ''
|
||||
rm $out/bin/hack
|
||||
'';
|
||||
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A top-like tool for your Kubernetes cluster";
|
||||
longDescription = ''
|
||||
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.
|
||||
'';
|
||||
homepage = "https://github.com/vladimirvivien/ktop/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ qjoly ];
|
||||
};
|
||||
}
|
@ -31535,6 +31535,8 @@ with pkgs;
|
||||
|
||||
ktunnel = callPackage ../applications/networking/cluster/ktunnel { };
|
||||
|
||||
ktop = callPackage ../applications/networking/cluster/ktop { };
|
||||
|
||||
pinniped = callPackage ../applications/networking/cluster/pinniped { };
|
||||
|
||||
kthxbye = callPackage ../servers/monitoring/prometheus/kthxbye.nix { };
|
||||
|
Loading…
Reference in New Issue
Block a user