2019-07-27 16:46:08 +00:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "k9s";
|
2019-09-21 22:40:14 +00:00
|
|
|
version = "0.8.4";
|
2019-07-27 16:46:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2019-09-21 22:40:14 +00:00
|
|
|
owner = "derailed";
|
|
|
|
repo = "k9s";
|
|
|
|
rev = version;
|
2019-07-27 16:46:08 +00:00
|
|
|
sha256 = "0wsj6wc2qi5708cg47l2qblq1cg8fcwxdygpkayib9hapx6lc6f8";
|
|
|
|
};
|
|
|
|
|
|
|
|
modSha256 = "1ia9wx6yd9mdr981lcw58xv39iqzz25r03bmn1c6byxmq2xpcjq8";
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Kubernetes CLI To Manage Your Clusters In Style.";
|
|
|
|
homepage = https://github.com/derailed/k9s;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ Gonzih ];
|
|
|
|
};
|
|
|
|
}
|