1
Fork 0
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:
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"))))
(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")