nixpkgs/pkgs/tools/system/ttop/default.nix
2023-03-05 15:02:05 -06:00

25 lines
591 B
Nix

{ 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 ];
};
}