mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: dstat: Add bash-minimal to inputs and use gexps.
* gnu/packages/admin.scm (dstat) [inputs]: Add bash-minimal. [arguments]: Use gexps. Delete trailing #t. Change-Id: Ia0635f39dfbc09be96690be678d1ad22983b6c08
This commit is contained in:
parent
bfce628617
commit
016b4fc307
1 changed files with 19 additions and 19 deletions
|
@ -3494,26 +3494,26 @@ (define-public dstat
|
|||
"dstat-skip-devices-without-io.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no make check
|
||||
(list
|
||||
#:tests? #f ; no make check
|
||||
#:make-flags
|
||||
(list (string-append "prefix=" (assoc-ref %outputs "out")))
|
||||
#~(list (string-append "prefix=" #$output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'unpack 'fix-python3-DeprecationWarning
|
||||
(lambda _
|
||||
(substitute* "dstat"
|
||||
(("collections") "collections.abc"))
|
||||
#t))
|
||||
(("collections") "collections.abc"))))
|
||||
(delete 'configure) ; no configure script
|
||||
(add-after 'install 'wrap
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let ((out (assoc-ref outputs "out")))
|
||||
(wrap-program (string-append out "/bin/dstat")
|
||||
`("GUIX_PYTHONPATH" ":" prefix (,(getenv "GUIX_PYTHONPATH"))))
|
||||
#t))))))
|
||||
(lambda _
|
||||
(wrap-program (string-append #$output "/bin/dstat")
|
||||
`("GUIX_PYTHONPATH" ":" prefix
|
||||
(,(getenv "GUIX_PYTHONPATH")))))))))
|
||||
(inputs
|
||||
`(("python" ,python-wrapper)
|
||||
("python-six" ,python-six)))
|
||||
(list bash-minimal ;for wrap-program
|
||||
python-wrapper
|
||||
python-six))
|
||||
(synopsis "Versatile resource statistics tool")
|
||||
(description "Dstat is a versatile replacement for @command{vmstat},
|
||||
@command{iostat}, @command{netstat}, and @command{ifstat}. Dstat overcomes
|
||||
|
|
Loading…
Reference in a new issue