mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add xkcdpass.
* gnu/packages/password-utils.scm (xkcdpass): New variable. Signed-off-by: Lars-Dominik Braun <lars@6xq.net>
This commit is contained in:
parent
50546f9c0c
commit
afa5fa8d5b
1 changed files with 40 additions and 0 deletions
|
@ -1455,3 +1455,43 @@ (define-public pass-tomb
|
|||
therefore you don't need to manage more key or secret. Moreover, you can ask
|
||||
pass-tomb to automatically close your store after a given time.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public xkcdpass
|
||||
(package
|
||||
(name "xkcdpass")
|
||||
(version "1.19.3")
|
||||
(home-page "https://github.com/redacted/XKCD-password-generator")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit (string-append "xkcdpass-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0xfrmx9k2vinlagv476rfcfdp41aix1ldy6qnzzx26n985gcyk7p"))))
|
||||
(build-system python-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'install 'install-manpage
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(install-file
|
||||
"xkcdpass.1"
|
||||
(string-append (assoc-ref outputs "out") "/share/man/man1")))))))
|
||||
(synopsis
|
||||
"Generate secure multiword passwords/passphrases, inspired by XKCD")
|
||||
(description
|
||||
"This package provides a flexible and scriptable password generator which
|
||||
generates strong passphrases, inspired by
|
||||
@url{https://xkcd.com/936/,XKCD 936}.")
|
||||
(license (list license:bsd-3 ;code
|
||||
license:cc0 ;spanish, eff_large_de, french word lists
|
||||
license:cc-by-sa3.0 ;finnish, italian word list
|
||||
license:cc-by-sa4.0 ;norwegian word list
|
||||
license:eupl1.1 ;finnish word list
|
||||
license:gpl2 ;portuguese word list
|
||||
license:gpl3 ;ger-anix word list
|
||||
license:lgpl2.0 ;finnish word list
|
||||
license:lgpl2.1 ;portuguese word list
|
||||
license:mpl1.1)))) ;portuguese word list
|
||||
|
|
Loading…
Reference in a new issue