mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add s-tui.
* gnu/packages/admin.scm (s-tui): New variable.
This commit is contained in:
parent
29fe71152f
commit
bee9f97e0a
1 changed files with 22 additions and 0 deletions
|
@ -1453,6 +1453,28 @@ (define-public acpica
|
|||
development, not the kernel implementation of ACPI.")
|
||||
(license license:gpl2))) ; dual GPLv2/ACPICA Licence
|
||||
|
||||
(define-public s-tui
|
||||
(package
|
||||
(name "s-tui")
|
||||
(version "0.8.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "s-tui" version))
|
||||
(sha256
|
||||
(base32
|
||||
"00lsh2v4i8rwfyjyxx5lijd6rnk9smcfffhzg5sv94ijpcnh216m"))))
|
||||
(build-system python-build-system)
|
||||
(inputs
|
||||
`(("python-psutil" ,python-psutil)
|
||||
("python-urwid" ,python-urwid)))
|
||||
(home-page "https://github.com/amanusk/s-tui")
|
||||
(synopsis "Interactive terminal stress test and monitoring tool")
|
||||
(description
|
||||
"The Stress Terminal UI displays graphs of the CPU frequency,
|
||||
utilization, temperature and power.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public stress
|
||||
(package
|
||||
(name "stress")
|
||||
|
|
Loading…
Reference in a new issue