1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 02:50:45 +02:00

gnu: ttyload: Use GEXPs.

* gnu/packages/admin.scm (ttyload): Use GEXPs.

Change-Id: I3d59ccbfd30e852726e1a66bf6c08a8f208d6d74
This commit is contained in:
Artyom V. Poptsov 2025-06-08 10:04:48 +03:00
parent 54789bb751
commit b1cda73419
No known key found for this signature in database
GPG key ID: 935EBE0736DC857E

View file

@ -1002,16 +1002,15 @@ or via the @code{facter} Ruby library.")
(base32 "0ldb7a13b9v876c6cbrs78pkizj64drnqx95z5shfbwgpwfhr4im")))) (base32 "0ldb7a13b9v876c6cbrs78pkizj64drnqx95z5shfbwgpwfhr4im"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f ; no tests (list #:tests? #f ; no tests
#:make-flags #:make-flags
(list (string-append "CC=" ,(cc-for-target))) #~(list (string-append "CC=" #$(cc-for-target)))
#:phases #:phases
(modify-phases %standard-phases #~(modify-phases %standard-phases
(delete 'configure) (delete 'configure)
(replace 'install (replace 'install
(lambda* (#:key outputs #:allow-other-keys) (lambda _
(let* ((out (assoc-ref outputs "out")) (let ((bin (string-append #$output "/bin")))
(bin (string-append out "/bin")))
(install-file "ttyload" bin))))))) (install-file "ttyload" bin)))))))
(home-page "https://www.daveltd.com/src/util/ttyload/") (home-page "https://www.daveltd.com/src/util/ttyload/")
(synopsis "Console based color-coded graphs of CPU load average") (synopsis "Console based color-coded graphs of CPU load average")