ttop: 1.5.2 -> 1.5.3 (#348356)

This commit is contained in:
Fabian Affolter 2024-10-14 13:49:44 +02:00 committed by GitHub
commit d8d3f0297c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,14 +1,19 @@
{ lib, buildNimPackage, fetchFromGitHub, testers }:
{
lib,
buildNimPackage,
fetchFromGitHub,
testers,
}:
buildNimPackage (finalAttrs: {
pname = "ttop";
version = "1.5.2";
version = "1.5.3";
src = fetchFromGitHub {
owner = "inv2004";
repo = "ttop";
rev = "v${finalAttrs.version}";
hash = "sha256-/rs5JjTXxptVHXL3fY8qP6Be3r5N871CEbUH7w6zx4A=";
hash = "sha256-KfPlO0RmahavA3dsxNDozuNOXIRAwDTtT+zFaF6hYd0=";
};
lockFile = ./lock.json;
@ -29,7 +34,10 @@ buildNimPackage (finalAttrs: {
changelog = "https://github.com/inv2004/ttop/releases/tag/${finalAttrs.src.rev}";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ figsoda sikmir ];
maintainers = with maintainers; [
figsoda
sikmir
];
mainProgram = "ttop";
};
})