poptop: init at 0.1.8

This commit is contained in:
luftmensch-luftmensch 2024-08-14 14:11:49 +02:00
parent c4a0a122c0
commit fc95088f11
No known key found for this signature in database

View File

@ -0,0 +1,30 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
let
pname = "poptop";
version = "0.1.8";
in
buildGoModule {
inherit pname version;
src = fetchFromGitHub {
owner = "bakks";
repo = "poptop";
rev = "v${version}";
hash = "sha256-CwJpkGNTDmtXfJx6GGz2XRU0fMeKl7I3fXm4BJ9MAQ4=";
};
vendorHash = "sha256-Ccvr+J+GDKnhlrlv0/kTaQYD986As7yb/h6Vyiuqjoc=";
meta = {
description = "Modern top command that charts system metrics like CPU load, network IO, etc in the terminal";
changelog = "https://github.com/bakks/poptop/releases/tag/v${version}";
homepage = "https://github.com/bakks/poptop";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ luftmensch-luftmensch ];
mainProgram = "poptop";
};
}