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

32 lines
772 B
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub }:
2019-07-27 18:46:08 +02:00
buildGoModule rec {
pname = "k9s";
2021-06-29 02:05:57 +02:00
version = "0.24.11";
2019-07-27 18:46:08 +02:00
src = fetchFromGitHub {
owner = "derailed";
repo = "k9s";
2020-02-01 19:47:21 +01:00
rev = "v${version}";
2021-06-29 02:05:57 +02:00
sha256 = "sha256-UWY4r7pasFsmlRRKFANyxPIoNNuMPNg1gMXrAXEcqdw=";
2019-07-27 18:46:08 +02:00
};
buildFlagsArray = ''
-ldflags=
-s -w
-X github.com/derailed/k9s/cmd.version=${version}
2020-04-01 15:41:04 +02:00
-X github.com/derailed/k9s/cmd.commit=${src.rev}
'';
2021-06-18 10:08:03 +02:00
vendorSha256 = "sha256-EEN3nKQBtAGG7MAa9h11KFPZ9g7xtNxhFB1i/2QS66g=";
2019-07-27 18:46:08 +02:00
doCheck = false;
meta = with lib; {
description = "Kubernetes CLI To Manage Your Clusters In Style";
2020-03-14 08:15:49 +01:00
homepage = "https://github.com/derailed/k9s";
2019-07-27 18:46:08 +02:00
license = licenses.asl20;
2020-07-08 18:16:04 +02:00
maintainers = with maintainers; [ Gonzih markus1189 ];
2019-07-27 18:46:08 +02:00
};
2020-07-08 18:16:04 +02:00
}