mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: makepasswd: Improve style.
* gnu/packages/password-utils.scm (makepasswd)[arguments]: Use G-Expressions. Change-Id: I675ec63c33d53718553b21ba5f1b66587d656cf9 Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
This commit is contained in:
parent
65e33d48d8
commit
ef48386826
1 changed files with 8 additions and 6 deletions
|
@ -1909,12 +1909,14 @@ try every password contained in a file.")
|
||||||
(inputs
|
(inputs
|
||||||
(list libxcrypt openssl))
|
(list libxcrypt openssl))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
(list
|
||||||
(modify-phases %standard-phases
|
#:phases
|
||||||
(delete 'configure))
|
#~(modify-phases %standard-phases
|
||||||
#:make-flags (list "CC=gcc"
|
(delete 'configure))
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
#:make-flags
|
||||||
#:tests? #f)) ;no tests
|
#~(list (string-append "CC=" #$(cc-for-target))
|
||||||
|
(string-append "PREFIX=" #$output))
|
||||||
|
#:tests? #f)) ;no tests
|
||||||
(synopsis "Generate (pseudo-)random passwords and hashes")
|
(synopsis "Generate (pseudo-)random passwords and hashes")
|
||||||
(description
|
(description
|
||||||
"Makepasswd is a program that generates pseudo-random passwords of a
|
"Makepasswd is a program that generates pseudo-random passwords of a
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue