cruise: init at 1.1.0 (#449342)

This commit is contained in:
Gaétan Lepage
2025-10-12 07:26:02 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
+6
View File
@@ -9670,6 +9670,12 @@
name = "Greaka";
keys = [ { fingerprint = "6275 FB5C C9AC 9D85 FF9E 44C5 EE92 A5CD C367 118C"; } ];
};
greatnatedev = {
email = "Nate@pelmel.net";
github = "GreatNateDev";
githubId = 99703235;
name = "Nate";
};
greg = {
email = "greg.hellings@gmail.com";
github = "greg-hellings";
+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;
};
})