34 lines
873 B
Nix
34 lines
873 B
Nix
{
|
|
rustPlatform,
|
|
lib,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "kubetui";
|
|
version = "1.9.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sarub0b0";
|
|
repo = "kubetui";
|
|
tag = "v${version}";
|
|
hash = "sha256-3n4XxbdCA9TrtFdOQWsp3f/JIUlepzMRpo9J4eNcsvA=";
|
|
};
|
|
|
|
checkFlags = [
|
|
"--skip=workers::kube::store::tests::kubeconfigからstateを生成"
|
|
];
|
|
|
|
cargoHash = "sha256-RdwDojQodlT7iq75WvFXgh1avpLogybZhYnVRfcC7SI=";
|
|
|
|
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";
|
|
};
|
|
}
|