guix-commits
[Top][All Lists]
Advanced

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

28/31: gnu: unionfs-fuse: Use G-expressions.


From: guix-commits
Subject: 28/31: gnu: unionfs-fuse: Use G-expressions.
Date: Sat, 29 Jul 2023 20:05:01 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 2c66435a40080f6acd773169d1e9ba45ed52de7f
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 23 02:00:00 2023 +0200

    gnu: unionfs-fuse: Use G-expressions.
    
    * gnu/packages/linux.scm (unionfs-fuse)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/linux.scm | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 3026cebcda..88ee1eafc4 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -3837,14 +3837,15 @@ user-space processes.")
                 "1wl5m5qnwf3s1792xphr35pb80sx8ybaqi3n3ddi5vvk3qjc4iws"))))
     (build-system cmake-build-system)
     (arguments
-     '(#:phases
-       (modify-phases %standard-phases
-         (replace 'check
-           ;; The epitome of ‘I tried’: run the 2 trivial tests that don't rely
-           ;; on the fuse kernel module being loaded.  All others would fail.
-           (lambda* (#:key tests? #:allow-other-keys)
-             (when tests?
-               (invoke "pytest" "../source/test_all.py" "-k" "test_help")))))))
+     (list
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'check
+            ;; The epitome of ‘I tried’: run the 2 trivial tests that don't 
rely
+            ;; on the fuse kernel module being loaded.  All others would fail.
+            (lambda* (#:key tests? #:allow-other-keys)
+              (when tests?
+                (invoke "pytest" "../source/test_all.py" "-k" 
"test_help")))))))
     (native-inputs
      (list pkg-config
 



reply via email to

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