mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
s-tui: init at 0.6.0
This commit is contained in:
parent
c78c565245
commit
753d114b34
24
pkgs/tools/system/s-tui/default.nix
Normal file
24
pkgs/tools/system/s-tui/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, pythonPackages }:
|
||||
|
||||
pythonPackages.buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "s-tui";
|
||||
version = "0.6.2";
|
||||
|
||||
src = pythonPackages.fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0fijk26sm51bnxf7plzd1fn2k4f8mdqd7j9zqc3d8zri7228vik2";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with pythonPackages; [
|
||||
urwid
|
||||
psutil
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://amanusk.github.io/s-tui/;
|
||||
descrption = "Stress-Terminal UI monitoring tool";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ infinisil ];
|
||||
};
|
||||
}
|
@ -4195,6 +4195,8 @@ with pkgs;
|
||||
|
||||
rzip = callPackage ../tools/compression/rzip { };
|
||||
|
||||
s-tui = callPackage ../tools/system/s-tui { };
|
||||
|
||||
s3backer = callPackage ../tools/filesystems/s3backer { };
|
||||
|
||||
s3fs = callPackage ../tools/filesystems/s3fs { };
|
||||
|
Loading…
Reference in New Issue
Block a user