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

34 lines
873 B
Nix
Raw Permalink Normal View History

2024-09-18 21:57:23 +08:00
{
rustPlatform,
lib,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
pname = "kubetui";
2025-07-06 19:39:33 +00:00
version = "1.9.0";
2024-09-18 21:57:23 +08:00
src = fetchFromGitHub {
owner = "sarub0b0";
repo = "kubetui";
tag = "v${version}";
2025-07-06 19:39:33 +00:00
hash = "sha256-3n4XxbdCA9TrtFdOQWsp3f/JIUlepzMRpo9J4eNcsvA=";
2024-09-18 21:57:23 +08:00
};
checkFlags = [
"--skip=workers::kube::store::tests::kubeconfigstate"
];
2025-07-06 19:39:33 +00:00
cargoHash = "sha256-RdwDojQodlT7iq75WvFXgh1avpLogybZhYnVRfcC7SI=";
2024-09-18 21:57:23 +08:00
meta = {
homepage = "https://github.com/sarub0b0/kubetui";
changelog = "https://github.com/sarub0b0/kubetui/releases/tag/v${version}";
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ bot-wxt1221 ];
license = lib.licenses.mit;
description = "Intuitive TUI tool for real-time monitoring and exploration of Kubernetes resources";
mainProgram = "kubetui";
};
}