mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add bashtop.
* gnu/packages/admin.scm (bashtop): New variable. Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
This commit is contained in:
parent
144d74f841
commit
6bbd0fd202
1 changed files with 24 additions and 0 deletions
|
@ -528,6 +528,30 @@ (define-public htop
|
|||
application (for console or X terminals) and requires ncurses.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public bashtop
|
||||
(package
|
||||
(name "bashtop")
|
||||
(version "0.9.25")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/aristocratos/bashtop")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"07nlr6vmyb7yihaxj1fp424lmhwkdjl6mls92v90f6gsvikpa13v"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
'(#:make-flags (list (string-append "PREFIX=" %output))
|
||||
#:tests? #f ; bats test fails with loading load.bash
|
||||
#:phases (modify-phases %standard-phases (delete 'configure))))
|
||||
(home-page "https://github.com/aristocratos/bashtop")
|
||||
(synopsis "Linux/OSX/FreeBSD resource monitor")
|
||||
(description "Resource monitor that shows usage and stats for processor,
|
||||
memory, disks, network and processes.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public pies
|
||||
(package
|
||||
(name "pies")
|
||||
|
|
Loading…
Reference in a new issue