gnu: snapraid: Use G-expressions.
* gnu/packages/backup.scm (snapraid)[arguments]: Rewrite as G-expressions.
This commit is contained in:
parent
4f488fb545
commit
e3c9860ab9
1 changed files with 9 additions and 9 deletions
|
@ -398,15 +398,15 @@ (define-public snapraid
|
|||
(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.
|
||||
|
|
Loading…
Reference in a new issue