kubetui: init at 1.5.3

This commit is contained in:
wxt 2024-09-18 21:57:23 +08:00
parent 8a7b35c6ef
commit c4fc0521a9

View File

@ -0,0 +1,42 @@
{
rustPlatform,
lib,
fetchFromGitHub,
stdenv,
darwin,
}:
rustPlatform.buildRustPackage rec {
pname = "kubetui";
version = "1.5.3";
src = fetchFromGitHub {
owner = "sarub0b0";
repo = "kubetui";
rev = "refs/tags/v${version}";
hash = "sha256-0K0h/MaQClJDqgF0qQO2INb+hpzxfSikAti+751MX/8=";
};
checkFlags = [
"--skip=workers::kube::store::tests::kubeconfigstate"
];
buildInputs = lib.optionals (stdenv.isDarwin) (
with darwin.apple_sdk;
[
frameworks.CoreGraphics
frameworks.AppKit
]
);
cargoHash = "sha256-kfAErXqjdLn2jaCtr+eI0+0v4TcE8Hpx0DDECnuYp5w=";
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";
};
}