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

32 lines
861 B
Nix
Raw Normal View History

2019-07-27 16:46:08 +00:00
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "k9s";
2020-02-07 11:51:05 +00:00
version = "0.13.8";
# rev is the release commit, mainly for version command output
2020-02-01 18:47:21 +00:00
rev = "8fedc42304ce33df314664eb0c4ac73be59065af";
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}";
2020-02-07 11:51:05 +00:00
sha256 = "0xkxvgqzzhz5bhbqwgyw9w238kadqccr1fbvrxjcjr32xlbs56z2";
2019-07-27 16:46:08 +00:00
};
buildFlagsArray = ''
-ldflags=
-s -w
-X github.com/derailed/k9s/cmd.version=${version}
-X github.com/derailed/k9s/cmd.commit=${rev}
'';
2020-02-01 18:47:21 +00:00
modSha256 = "04k1wfhyignxy84pvq09fxvvk7pxdswbrzxvxc50dz8n8y7wcnjf";
2019-07-27 16:46:08 +00:00
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 ];
};
}