cruise: init at 1.1.0 (#449342)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
})
|
||||
Reference in New Issue
Block a user