diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-06 00:31:20 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-06 05:24:18 +0100 |
commit | e3c9860ab905ce035c8d71d5044558673bc99654 (patch) | |
tree | d3f09a3d9deba7d8405900f4d4707bc4296ced5d /gnu/packages/backup.scm | |
parent | 4f488fb545430489a610d420368f712fdf9ae8e2 (diff) | |
download | guix-e3c9860ab905ce035c8d71d5044558673bc99654.tar guix-e3c9860ab905ce035c8d71d5044558673bc99654.tar.gz |
gnu: snapraid: Use G-expressions.
* gnu/packages/backup.scm (snapraid)[arguments]:
Rewrite as G-expressions.
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 18 |
1 files 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. |