podman-tui: 1.8.1 -> 1.9.0, add maintainer (#449209)

This commit is contained in:
Matteo Pacini
2025-10-07 09:00:13 +00:00
committed by GitHub
+9 -3
View File
@@ -4,17 +4,18 @@
fetchFromGitHub,
buildGoModule,
testers,
nix-update-script,
}:
buildGoModule (finalAttrs: {
pname = "podman-tui";
version = "1.8.1";
version = "1.9.0";
src = fetchFromGitHub {
owner = "containers";
repo = "podman-tui";
tag = "v${finalAttrs.version}";
hash = "sha256-lvqitz4H10ILg2b6Mlw1DoWoByFKJaDiCo5zTlzTBQ4=";
hash = "sha256-vE2GG7lDGORTuziNSoKJWNKGhskcGuEh6U2KHrGu0JQ=";
};
vendorHash = null;
@@ -48,11 +49,16 @@ buildGoModule (finalAttrs: {
version = "v${finalAttrs.version}";
};
passthru.updateScript = nix-update-script { };
meta = {
homepage = "https://github.com/containers/podman-tui";
description = "Podman Terminal UI";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ aaronjheng ];
maintainers = with lib.maintainers; [
aaronjheng
iedame
];
mainProgram = "podman-tui";
};
})