2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2019-07-27 16:46:08 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "k9s";
|
2021-05-17 07:31:58 +00:00
|
|
|
version = "0.24.9";
|
2019-07-27 16:46:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-09-21 22:40:14 +00:00
|
|
|
owner = "derailed";
|
|
|
|
repo = "k9s";
|
2020-02-01 18:47:21 +00:00
|
|
|
rev = "v${version}";
|
2021-05-17 07:31:58 +00:00
|
|
|
sha256 = "sha256-9/P6OaSZDJ98EQ9DM4Oib0T1sC1K3WxUXh4IQU3qXbs=";
|
2019-07-27 16:46:08 +00:00
|
|
|
};
|
|
|
|
|
2019-10-30 10:16:13 +00:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=
|
|
|
|
-s -w
|
|
|
|
-X github.com/derailed/k9s/cmd.version=${version}
|
2020-04-01 13:41:04 +00:00
|
|
|
-X github.com/derailed/k9s/cmd.commit=${src.rev}
|
2019-10-30 10:16:13 +00:00
|
|
|
'';
|
|
|
|
|
2021-05-17 07:31:58 +00:00
|
|
|
vendorSha256 = "sha256-hqmymxP4zK8GVqOxzB6vRfFyo+VIeI1suBu64/oEVig=";
|
2019-07-27 16:46:08 +00:00
|
|
|
|
2020-08-04 00:26:27 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-10-11 05:55:05 +00:00
|
|
|
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;
|
2020-07-08 16:16:04 +00:00
|
|
|
maintainers = with maintainers; [ Gonzih markus1189 ];
|
2019-07-27 16:46:08 +00:00
|
|
|
};
|
2020-07-08 16:16:04 +00:00
|
|
|
}
|