mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: cracklib: Install password dictionary.
* gnu/packages/password-utils.scm (cracklib): Use `make dict`. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
18919cf928
commit
27faad22a8
1 changed files with 9 additions and 0 deletions
|
@ -310,6 +310,15 @@ (define-public cracklib
|
|||
(sha256
|
||||
(base32 "1rimpjsdnmw8f5b7k558cic41p2qy2n2yrlqp5vh7mp4162hk0py"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-dict
|
||||
(lambda* (#:key make-flags #:allow-other-keys)
|
||||
(begin
|
||||
(chmod (string-append "util/cracklib-format") #o755)
|
||||
(apply invoke "make" "dict" make-flags)
|
||||
#t))))))
|
||||
(synopsis "Password checking library")
|
||||
(home-page "https://github.com/cracklib/cracklib")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue