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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
902 B
Nix
Raw Normal View History

2022-03-18 03:28:20 +00:00
{ stdenv, lib, buildGoModule, fetchFromGitHub }:
2019-07-27 16:46:08 +00:00
buildGoModule rec {
pname = "k9s";
2021-12-28 17:18:52 +00:00
version = "0.25.18";
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-28 17:18:52 +00:00
sha256 = "sha256-iUhMPtFX7qFULegiyhlT4aG9q3deZ8aRqyEcbZ9jY/s=";
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}"
];
2022-01-30 03:25:31 +00:00
vendorSha256 = "sha256-mMob7M9RQlqaVK0DgHpaAK9d1btzfQetnliUqFTvjJQ=";
2019-07-27 16:46:08 +00:00
2021-12-03 13:56:38 +00:00
preCheck = "export HOME=$(mktemp -d)";
2022-03-18 03:28:20 +00:00
# TODO investigate why some config tests are failing
doCheck = !(stdenv.isDarwin && stdenv.isAarch64);
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
}