guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/08: gnu: gifsicle: Use G-expressions.


From: guix-commits
Subject: 04/08: gnu: gifsicle: Use G-expressions.
Date: Mon, 4 Nov 2024 06:56:37 -0500 (EST)

z572 pushed a commit to branch master
in repository guix.

commit 1e1e5dbf137eb7cbe73d10cd226a5f5f11069408
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Mon Nov 4 18:23:48 2024 +0800

    gnu: gifsicle: Use G-expressions.
    
    * gnu/packages/image.scm (gifsicle)[arguments]: Use G-expressions.
    
    Change-Id: I4bcf803e129e18c9d554d8544fc6c4896b61c9c3
---
 gnu/packages/image.scm | 23 ++++++++++++-----------
 1 file changed, 12 insertions(+), 11 deletions(-)

diff --git a/gnu/packages/image.scm b/gnu/packages/image.scm
index f20bb45915..7337a27b88 100644
--- a/gnu/packages/image.scm
+++ b/gnu/packages/image.scm
@@ -2187,17 +2187,18 @@ stdout.")
                           (("2.72") "2.69"))))))
     (build-system gnu-build-system)
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (add-before 'check 'patch-tests
-           (lambda _
-             (substitute* "test/testie"
-               (("/usr/bin/perl")
-                (which "perl"))
-               (("/bin/sh")
-                (which "sh"))
-               (("/bin/rm")
-                (which "rm"))))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (add-before 'check 'patch-tests
+            (lambda _
+              (substitute* "test/testie"
+                (("/usr/bin/perl")
+                 (which "perl"))
+                (("/bin/sh")
+                 (which "sh"))
+                (("/bin/rm")
+                 (which "rm"))))))))
     (native-inputs
      (list
       autoconf automake



reply via email to

[Prev in Thread] Current Thread [Next in Thread]