blob: 4c4ce328215b49a2fd699210e84a3ad70b4b0808 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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::kubeconfigからstateを生成"
];
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";
};
}
|