dockrtui: init at 0.1.3 (#473897)

This commit is contained in:
Yohann Boniface
2026-01-22 22:28:39 +00:00
committed by GitHub
2 changed files with 37 additions and 0 deletions
+6
View File
@@ -4584,6 +4584,12 @@
githubId = 52875777;
name = "Channing He";
};
chansuke = {
email = "chansuke0@gmail.com";
github = "chansuke";
githubId = 501052;
name = "chansuke";
};
chaoflow = {
email = "flo@chaoflow.net";
github = "chaoflow";
+31
View File
@@ -0,0 +1,31 @@
{
lib,
fetchFromGitHub,
rustPlatform,
nix-update-script,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "dockrtui";
version = "0.1.3";
src = fetchFromGitHub {
owner = "LuuNa-JD";
repo = "dockrtui";
tag = "v${finalAttrs.version}";
hash = "sha256-C0TS3jp3ONsgjXKZYeMM9AeIxT2Moy8gxhFxkguT1I8=";
};
cargoHash = "sha256-8DY4pRWCswsC+wkrAHFic7YTkAT2VMRk8++jpNoQkEs=";
passthru.updateScript = nix-update-script { };
meta = {
description = "Fast, modern and keyboard-driven terminal dashboard for Docker";
homepage = "https://github.com/LuuNa-JD/dockrtui";
changelog = "https://github.com/LuuNa-JD/dockrtui/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ chansuke ];
mainProgram = "dockrtui";
};
})