cruise: init at 1.1.0

This commit is contained in:
GreatNateDev
2025-10-07 20:00:35 -05:00
parent 2f968d9524
commit 5aabe81177
+31
View File
@@ -0,0 +1,31 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "cruise";
version = "1.1.0";
src = fetchFromGitHub {
owner = "NucleoFusion";
repo = "cruise";
tag = "v${finalAttrs.version}";
hash = "sha256-0xIugbLlKlMODbMvsFzQXjKNNGY61tF4P/0loPlfs6o=";
};
vendorHash = "sha256-Zx1rZl5ljlsBNV1eQKPtQ+SgJV9l5rS8hwBe8nX9dYQ=";
passthru.updateScript = nix-update-script { };
meta = {
description = "TUI for managing Docker containers, images, volumes, networks, and more";
homepage = "https://github.com/NucleoFusion/cruise";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ greatnatedev ];
mainProgram = "cruise";
platforms = lib.platforms.linux;
};
})