all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#65838] [PATCH] gnu: neofetch: Fix cross-compiling .
@ 2023-09-09  9:26 Zheng Junjie
  2023-09-14 14:48 ` bug#65838: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Junjie @ 2023-09-09  9:26 UTC (permalink / raw)
  To: 65838

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=y, Size: 1824 bytes --]

* gnu/packages/admin.scm (neofetch): Fix cross-compiling.
[arguments]: Use Gexp.
---
 gnu/packages/admin.scm | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 5d586e6f36..4cd5ab178f 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>
@@ -3970,12 +3970,12 @@ (define-public neofetch
                 "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

base-commit: e2e5df596f5e682d78043b12463cc47d14291ba9
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#65838: [PATCH] gnu: neofetch: Fix cross-compiling .
  2023-09-09  9:26 [bug#65838] [PATCH] gnu: neofetch: Fix cross-compiling Zheng Junjie
@ 2023-09-14 14:48 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2023-09-14 14:48 UTC (permalink / raw)
  To: Zheng Junjie; +Cc: 65838-done

Zheng Junjie <zhengjunjie@iscas.ac.cn> skribis:

> * gnu/packages/admin.scm (neofetch): Fix cross-compiling.
> [arguments]: Use Gexp.

Hi! Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-09-14 16:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-09  9:26 [bug#65838] [PATCH] gnu: neofetch: Fix cross-compiling Zheng Junjie
2023-09-14 14:48 ` bug#65838: " Ludovic Courtès

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.