ku: init at 0.7.0 (#533454)

This commit is contained in:
Oleksii Filonenko
2026-06-26 09:54:15 +00:00
committed by GitHub
+44
View File
@@ -0,0 +1,44 @@
{
lib,
buildGo126Module,
fetchFromGitHub,
nix-update-script,
versionCheckHook,
}:
buildGo126Module (finalAttrs: {
pname = "ku";
version = "0.7.0";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "bjarneo";
repo = "ku";
tag = "v${finalAttrs.version}";
hash = "sha256-LJ078zRCjz+h8GbDuQiOTxfSajX4b/XxeL+FwYDqT8s=";
};
vendorHash = "sha256-0gLwvJSEMgCw23YG8rMzoI7ubo0I5nvguex2HBJE1dU=";
ldflags = [
"-s"
"-w"
"-X main.version=v${finalAttrs.version}"
];
nativeInstallCheckInputs = [ versionCheckHook ];
versionCheckProgramArg = "--version";
doInstallCheck = true;
passthru.updateScript = nix-update-script { };
meta = {
description = "Fast, keyboard-driven Kubernetes TUI";
homepage = "https://github.com/bjarneo/ku";
changelog = "https://github.com/bjarneo/ku/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ kevinpita ];
mainProgram = "ku";
platforms = lib.platforms.unix;
};
})