guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d042111c9e7a530f6627fff2beae334db6d91fca
Author: Ludovic Courtès <[email protected]>
AuthorDate: Tue Sep 23 11:11:46 2025 +0200
gnu: libicns: Add missing gexp.
The #~ annotation was removed in 24701a21e812acdbb9cad67d0af390528b572bdc.
* gnu/packages/image.scm (libicns)[arguments]: Add missing gexp.
Change-Id: I57a985a0d295f0b72bc9d6c0c0df79da1d8b1053
---
gnu/packages/image.scm | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index 1088115d0e..2b1a84eb05 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -770,15 +770,15 @@ maximum quality factor.")
(if (and (target-riscv64?)
(%current-target-system))
(list #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'update-config-scripts
- (lambda* (#:key native-inputs inputs #:allow-other-keys)
- (for-each (lambda (file)
- (install-file
- (search-input-file
- (or native-inputs inputs)
- (string-append "/bin/" file)) "."))
- '("config.guess" "config.sub"))))))
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'update-config-scripts
+ (lambda* (#:key native-inputs inputs #:allow-other-keys)
+ (for-each (lambda (file)
+ (install-file
+ (search-input-file
+ (or native-inputs inputs)
+ (string-append "/bin/" file)) "."))
+ '("config.guess" "config.sub"))))))
'())))
(native-inputs
(if (and (target-riscv64?)