Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
50 lines
1.9 KiB
Nix
50 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "komodo";
|
|
version = "1.19.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "moghtech";
|
|
repo = "komodo";
|
|
tag = "v${version}";
|
|
hash = "sha256-dLBgdcrIp5QM2TVIa86qX7m1c5n+qOIQJtqJPGvIZ+0=";
|
|
};
|
|
|
|
cargoHash = "sha256-jf/Jp28g3inGn5jQp3cACdhl//tbXTMc1vP1K3g/CyQ=";
|
|
|
|
# disable for check. document generation is fail
|
|
# > error: doctest failed, to rerun pass `-p komodo_client --doc`
|
|
doCheck = false;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Tool to build and deploy software on many servers";
|
|
longDescription = ''
|
|
Komodo is a web app to provide structure for managing your servers, builds, deployments, and automated procedures.
|
|
|
|
With Komodo you can:
|
|
* Connect all of your servers, and alert on CPU usage, memory usage, and disk usage.
|
|
* Create, start, stop, and restart Docker containers on the connected servers, and view their status and logs.
|
|
* Deploy docker compose stacks. The file can be defined in UI, or in a git repo, with auto deploy on git push.
|
|
* Build application source into auto-versioned Docker images, auto built on webhook. Deploy single-use AWS instances for infinite capacity.
|
|
* Manage repositories on connected servers, which can perform automation via scripting / webhooks.
|
|
* Manage all your configuration / environment variables, with shared global variable and secret interpolation.
|
|
* Keep a record of all the actions that are performed and by whom.
|
|
|
|
Komodo is composed of a single core and any amount of connected servers running the periphery application.
|
|
'';
|
|
homepage = "https://komo.do";
|
|
changelog = "https://github.com/moghtech/komodo/releases/tag/v${version}";
|
|
mainProgram = "komodo";
|
|
maintainers = with lib.maintainers; [ r17x ];
|
|
license = lib.licenses.gpl3;
|
|
};
|
|
}
|