Unverified Commit 0f1e9407 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

dockrtui: init at 0.1.3 (#473897)

parents 064f43d4 99718f89
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -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 −0
Original line number Diff line number Diff line
{
  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";
  };
})