guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0f556f2011016e3e212a1f9cca3f43edcdec10fc
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Aug 26 13:27:12 2025 +0200

    gnu: libutf: Improve style.
    
    * gnu/packages/suckless.scm (libutf)[arguments]: Use G-Expressions.
    
    Change-Id: If774e286993870052bb3a38b675a83ab49067536
    Signed-off-by: Danny Milosavljevic <[email protected]>
---
 gnu/packages/suckless.scm | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/suckless.scm b/gnu/packages/suckless.scm
index 7e0676e61e..8320ffe7dd 100644
--- a/gnu/packages/suckless.scm
+++ b/gnu/packages/suckless.scm
@@ -959,13 +959,14 @@ utilities to handle strings according to the Unicode 
standard.")
            "1ih5vjavilzggyr1j1z6w1z12c2fs5fg77cfnv7ami5ivsy3kg3d"))))
       (build-system gnu-build-system)
       (arguments
-       `(#:tests? #f                    ; no tests
-         #:make-flags
-         (list (string-append "CC=" ,(cc-for-target))
-               (string-append "PREFIX=" %output))
-         #:phases
-         (modify-phases %standard-phases
-           (delete 'configure))))       ; no configure script
+       (list
+        #:tests? #f                    ; no tests
+        #:make-flags
+        #~(list (string-append "CC=" #$(cc-for-target))
+                (string-append "PREFIX=" #$output))
+        #:phases
+        #~(modify-phases %standard-phases
+            (delete 'configure))))       ; no configure script
       (inputs
        (list gawk))
       (home-page "https://github.com/cls/libutf";)

Reply via email to