Commit 0ebaa9bc authored by Nikolay Korotkiy's avatar Nikolay Korotkiy Committed by Emery Hemingway
Browse files

ttop: init at 0.8.6

parent 61016deb
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
{ 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 ];
    };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };