diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-06-08 10:04:48 +0300 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2025-06-08 10:28:54 +0300 |
commit | b1cda7341942e0da27b7b646f59f8e27a9b5544a (patch) | |
tree | b2ebab67b7cd0d38d41ac63b444ae41005837629 /gnu/packages/admin.scm | |
parent | 54789bb75104b4bfe7f9b3be60113ce19d55fe68 (diff) |
gnu: ttyload: Use GEXPs.
* gnu/packages/admin.scm (ttyload): Use GEXPs.
Change-Id: I3d59ccbfd30e852726e1a66bf6c08a8f208d6d74
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 18c3dbd7c7..67162e5937 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -1002,17 +1002,16 @@ or via the @code{facter} Ruby library.") (base32 "0ldb7a13b9v876c6cbrs78pkizj64drnqx95z5shfbwgpwfhr4im")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no tests - #:make-flags - (list (string-append "CC=" ,(cc-for-target))) - #: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"))) - (install-file "ttyload" bin))))))) + (list #:tests? #f ; no tests + #:make-flags + #~(list (string-append "CC=" #$(cc-for-target))) + #:phases + #~(modify-phases %standard-phases + (delete 'configure) + (replace 'install + (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") (description |