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,11 +1909,13 @@ try every password contained in a file.")
|
|||
(inputs
|
||||
(list libxcrypt openssl))
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(list
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(delete 'configure))
|
||||
#:make-flags (list "CC=gcc"
|
||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
#:make-flags
|
||||
#~(list (string-append "CC=" #$(cc-for-target))
|
||||
(string-append "PREFIX=" #$output))
|
||||
#:tests? #f)) ;no tests
|
||||
(synopsis "Generate (pseudo-)random passwords and hashes")
|
||||
(description
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue