talos-pilot: init at 0.1.9

This commit is contained in:
Franta Bartik
2026-04-27 11:51:09 -04:00
parent b22149fecc
commit decd7e0ff4
+42
View File
@@ -0,0 +1,42 @@
{
lib,
rustPlatform,
fetchFromGitHub,
protobuf,
nix-update-script,
testers,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "talos-pilot";
version = "0.1.9";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "Handfish";
repo = "talos-pilot";
tag = "v${finalAttrs.version}";
hash = "sha256-OZF74efMWQkZgSbOnzyygzt4pRADY1liWVpvnzWns8Y=";
};
cargoHash = "sha256-loCYAgZhNtYs8aBbOJMLkS9i0XglOn6BrodLQROPMPQ=";
nativeBuildInputs = [
protobuf
];
passthru = {
updateScript = nix-update-script { };
tests.version = testers.testVersion {
package = finalAttrs.finalPackage;
};
};
meta = {
description = "Talos TUI for real-time node monitoring, log streaming, etcd health, and diagnostics";
homepage = "https://github.com/Handfish/talos-pilot";
changelog = "https://github.com/Handfish/talos-pilot/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ frantathefranta ];
mainProgram = "talos-pilot";
};
})