mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-13 18:40:57 +02:00
gnu: ttyload: Use GEXPs.
* gnu/packages/admin.scm (ttyload): Use GEXPs. Change-Id: I3d59ccbfd30e852726e1a66bf6c08a8f208d6d74
This commit is contained in:
parent
54789bb751
commit
b1cda73419
1 changed files with 10 additions and 11 deletions
|
@ -1002,16 +1002,15 @@ or via the @code{facter} Ruby library.")
|
|||
(base32 "0ldb7a13b9v876c6cbrs78pkizj64drnqx95z5shfbwgpwfhr4im"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
(list #:tests? #f ; no tests
|
||||
#:make-flags
|
||||
(list (string-append "CC=" ,(cc-for-target)))
|
||||
#~(list (string-append "CC=" #$(cc-for-target)))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure)
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(lambda _
|
||||
(let ((bin (string-append #$output "/bin")))
|
||||
(install-file "ttyload" bin)))))))
|
||||
(home-page "https://www.daveltd.com/src/util/ttyload/")
|
||||
(synopsis "Console based color-coded graphs of CPU load average")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue