gnu: Add emacs-password-generator.

* gnu/packages/emacs-xyz.scm (emacs-password-generator): New variable.
This commit is contained in:
Arun Isaac 2020-02-26 23:36:01 +05:30 committed by Pierre Neidhardt
parent b4e0f0dc37
commit 83ee1e91b0
No known key found for this signature in database
GPG key ID: 9BDCF497A4BBCC7F

View file

@ -21639,3 +21639,25 @@ (define-public emacs-exiftool
ExifTool supports reading and writing metadata in various formats including
EXIF, XMP and IPTC.")
(license license:gpl3+)))
(define-public emacs-password-generator
(package
(name "emacs-password-generator")
(version "1.01")
(home-page "https://github.com/zargener/emacs-password-genarator")
(source
(origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit "904cdb591a04305ba882ce19e1d117f5fa60f7d3")))
(file-name (git-file-name name version))
(sha256
(base32
"1qgvn79qz1h8ykm5i1qv2fja4v2y0g2i0n5sf7byhnqhqlwn63nv"))))
(build-system emacs-build-system)
(synopsis "Generate passwords inside Emacs")
(description "@code{emacs-password-generator} provides simple functions to
generate random passwords and insert them into the current buffer. It also
supports generation of phonetic and numeric passwords.")
(license license:artistic2.0)))