guix-commits
[Top][All Lists]
Advanced

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

13/15: gnu: snapraid: Use G-expressions.


From: guix-commits
Subject: 13/15: gnu: snapraid: Use G-expressions.
Date: Wed, 5 Jan 2022 23:23:50 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit e3c9860ab905ce035c8d71d5044558673bc99654
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu Jan 6 00:31:20 2022 +0100

    gnu: snapraid: Use G-expressions.
    
    * gnu/packages/backup.scm (snapraid)[arguments]:
    Rewrite as G-expressions.
---
 gnu/packages/backup.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm
index eb9783b49d..b3bd099e37 100644
--- a/gnu/packages/backup.scm
+++ b/gnu/packages/backup.scm
@@ -398,15 +398,15 @@ list and implement the backup strategy.")
         (base32 "1jpg97my0akh2ayzy0nm4yqiv4gcx79rgyrkzd19yyv3iy719vcw"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:configure-flags
-       (list "--enable-valgrind"
-             "--with-blkid")
-       #:phases
-       (modify-phases %standard-phases
-         (add-before 'bootstrap 'set-version
-           (lambda _
-             (setenv "VERSION" ,version)
-             (patch-shebang "autover.sh"))))))
+     (list #:configure-flags
+           #~(list "--enable-valgrind"
+                   "--with-blkid")
+           #:phases
+           #~(modify-phases %standard-phases
+               (add-before 'bootstrap 'set-version
+                 (lambda _
+                   (setenv "VERSION" #$version)
+                   (patch-shebang "autover.sh"))))))
     (native-inputs
      (list automake autoconf
            ;; For the tests.



reply via email to

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