guix-commits
[Top][All Lists]
Advanced

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

08/12: gnu: umockdev: Use G-expressions.


From: guix-commits
Subject: 08/12: gnu: umockdev: Use G-expressions.
Date: Fri, 18 Feb 2022 08:15:58 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit 33f2e862c7bf87e45d12dbd3e87501a64d5e69fe
Author: Maxime Devos <maximedevos@telenet.be>
AuthorDate: Thu Feb 17 18:09:49 2022 +0000

    gnu: umockdev: Use G-expressions.
    
    While we're at it, remove the trailing #t.
    
    * gnu/packagers/check.scm (umockdev)[arguments]<#:phases>: Change to a 
G-exp.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/check.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 06adf20c36..8d422d4b85 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2885,13 +2885,12 @@ provides a simple way to achieve this.")
                 "0xmi24ckpps32k7hc139psgbsnsf4g106sv4l9m445m46amkxggd"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'fix-test
-           (lambda _
-             (substitute* "tests/test-umockdev.c"
-               (("/run") "/tmp"))
-             #t)))))
+     (list #:phases
+           #~(modify-phases %standard-phases
+               (add-after 'unpack 'fix-test
+                 (lambda _
+                   (substitute* "tests/test-umockdev.c"
+                     (("/run") "/tmp")))))))
     (native-inputs
      (list vala
            gobject-introspection



reply via email to

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