mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: pwsafe-cli: Improve style.
* gnu/packages/password-utils.scm (pwsafe-cli)[arguments]: Use G-Expressions. Change-Id: I0a2aa93d6d43206fb69307d7241d95983cc9fc54 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
f878a805f8
commit
40776546c6
1 changed files with 12 additions and 12 deletions
|
@ -506,18 +506,18 @@ platforms.")
|
|||
(file-name (git-file-name name version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
;; FIXME: skip failing test suite (requires write access to /tmp),
|
||||
;; patching path does not help somehow.
|
||||
`(#:tests? #f
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
(invoke "aclocal")
|
||||
(invoke "autoheader")
|
||||
(invoke "automake" "--add-missing")
|
||||
(invoke "autoconf")
|
||||
#t)))))
|
||||
(list
|
||||
;; FIXME: skip failing test suite (requires write access to /tmp),
|
||||
;; patching path does not help somehow.
|
||||
#:tests? #f
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(replace 'bootstrap
|
||||
(lambda _
|
||||
(invoke "aclocal")
|
||||
(invoke "autoheader")
|
||||
(invoke "automake" "--add-missing")
|
||||
(invoke "autoconf"))))))
|
||||
(native-inputs
|
||||
(list autoconf automake))
|
||||
(inputs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue