diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2023-09-09 17:26:00 +0800 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2023-09-14 16:47:46 +0200 |
commit | 6c72db7314b6c355a2bd956da840e9a07a5b1929 (patch) | |
tree | 330ba225037c1253dd90713fa4031a32d7ba3102 /gnu/packages/admin.scm | |
parent | de64e412f3684d54bd2a485920cd3287a551f793 (diff) | |
download | guix-6c72db7314b6c355a2bd956da840e9a07a5b1929.tar.gz |
gnu: neofetch: Fix cross-compiling.
* gnu/packages/admin.scm (neofetch): Fix cross-compiling. [arguments]: Use Gexp. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/admin.scm')
-rw-r--r-- | gnu/packages/admin.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index 2492890ee5..98ed3d4e61 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -36,7 +36,7 @@ ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> ;;; Copyright © 2020 Morgan Smith <Morgan.J.Smith@outlook.com> ;;; Copyright © 2021, 2022, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> -;;; Copyright © 2021 Zheng Junjie <873216071@qq.com> +;;; Copyright © 2021, 2023 Zheng Junjie <873216071@qq.com> ;;; Copyright © 2021 Stefan Reichör <stefan@xsteve.at> ;;; Copyright © 2021 qblade <qblade@protonmail.com> ;;; Copyright © 2021 Hyunseok Kim <lasnesne@lagunposprasihopre.org> @@ -4008,12 +4008,12 @@ Intel DRM Driver.") "0i7wpisipwzk0j62pzaigbiq42y1mn4sbraz4my2jlz6ahwf00kv")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; there are no tests - #:make-flags - (list (string-append "PREFIX=" %output)) - #:phases - (modify-phases %standard-phases - (delete 'configure)))) ; no configure script + (list #:tests? #f ; there are no tests + #:make-flags + #~(list (string-append "PREFIX=" #$output)) + #:phases + #~(modify-phases %standard-phases + (delete 'configure)))) ; no configure script (home-page "https://github.com/dylanaraps/neofetch") (synopsis "System information script") (description "Neofetch is a command-line system information tool written in |