guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 40776546c61a05afa2b083081484c69d30622f6b
Author: Cayetano Santos <[email protected]>
AuthorDate: Tue Sep 16 16:02:38 2025 +0200

    gnu: pwsafe-cli: Improve style.
    
    * gnu/packages/password-utils.scm (pwsafe-cli)[arguments]: Use 
G-Expressions.
    
    Change-Id: I0a2aa93d6d43206fb69307d7241d95983cc9fc54
    Signed-off-by: Liliana Marie Prikler <[email protected]>
---
 gnu/packages/password-utils.scm | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm
index 412b3bb3c8..a9ebf61efb 100644
--- a/gnu/packages/password-utils.scm
+++ b/gnu/packages/password-utils.scm
@@ -506,18 +506,18 @@ platforms.")
          (file-name (git-file-name name version))))
       (build-system gnu-build-system)
       (arguments
-       ;; FIXME: skip failing test suite (requires write access to /tmp),
-       ;; patching path does not help somehow.
-       `(#:tests? #f
-         #:phases
-         (modify-phases %standard-phases
-           (replace 'bootstrap
-             (lambda _
-               (invoke "aclocal")
-               (invoke "autoheader")
-               (invoke "automake" "--add-missing")
-               (invoke "autoconf")
-               #t)))))
+       (list
+        ;; FIXME: skip failing test suite (requires write access to /tmp),
+        ;; patching path does not help somehow.
+        #:tests? #f
+        #:phases
+        #~(modify-phases %standard-phases
+            (replace 'bootstrap
+              (lambda _
+                (invoke "aclocal")
+                (invoke "autoheader")
+                (invoke "automake" "--add-missing")
+                (invoke "autoconf"))))))
       (native-inputs
        (list autoconf automake))
       (inputs

Reply via email to