nixpkgs/pkgs/applications/networking/cluster/k9s/default.nix

33 lines
805 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-07-27 16:46:08 +00:00
buildGoModule rec {
pname = "k9s";
2021-12-15 14:30:27 +00:00
version = "0.25.12";
2019-07-27 16:46:08 +00:00
src = fetchFromGitHub {
owner = "derailed";
repo = "k9s";
2020-02-01 18:47:21 +00:00
rev = "v${version}";
2021-12-15 14:30:27 +00:00
sha256 = "sha256-S+roKkAtiGJmp/MHFeB+8mLQDL9okzLuJW6DMz3dQDk=";
2019-07-27 16:46:08 +00:00
};
2021-08-26 06:45:51 +00:00
ldflags = [
"-s" "-w"
"-X github.com/derailed/k9s/cmd.version=${version}"
"-X github.com/derailed/k9s/cmd.commit=${src.rev}"
];
2021-12-07 07:34:07 +00:00
vendorSha256 = "sha256-jWZ1N1A8VECBQvkXyuzMUkI4u2NLr5/gSvJUfK5VgzM=";
2019-07-27 16:46:08 +00:00
2021-12-03 13:56:38 +00:00
preCheck = "export HOME=$(mktemp -d)";
2021-12-03 13:02:50 +00:00
doCheck = true;
meta = with lib; {
description = "Kubernetes CLI To Manage Your Clusters In Style";
2020-03-14 07:15:49 +00:00
homepage = "https://github.com/derailed/k9s";
2019-07-27 16:46:08 +00:00
license = licenses.asl20;
2021-12-03 13:02:50 +00:00
maintainers = with maintainers; [ Gonzih markus1189 bryanasdev000 ];
2019-07-27 16:46:08 +00:00
};
2020-07-08 16:16:04 +00:00
}