ttop: init at 0.8.6

This commit is contained in:
Nikolay Korotkiy 2023-03-05 15:35:09 +04:00 committed by Emery Hemingway
parent 61016debe4
commit 0ebaa9bc83
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ lib, nimPackages, fetchFromGitHub }:
nimPackages.buildNimPackage rec {
pname = "ttop";
version = "0.8.6";
nimBinOnly = true;
src = fetchFromGitHub {
owner = "inv2004";
repo = "ttop";
rev = "v${version}";
hash = "sha256-2TuDaStWRsO02l8WhYLWX7vqsC0ne2adxrzqrFF9BfQ=";
};
buildInputs = with nimPackages; [ asciigraph illwill parsetoml zippy ];
meta = with lib;
src.meta // {
description = "Top-like system monitoring tool";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ sikmir ];
};
}

View File

@ -12900,6 +12900,8 @@ with pkgs;
};
ttfautohint-nox = ttfautohint.override { enableGUI = false; };
ttop = callPackage ../tools/system/ttop { };
tty-clock = callPackage ../tools/misc/tty-clock { };
tty-share = callPackage ../applications/misc/tty-share { };