gnu: Add pinentry-emacs.
* gnu/packages/gnupg.scm (pinentry-emacs): New variable. Co-authored-by: Ludovic Courtès <ludo@gnu.org>master
parent
602a148650
commit
abc4a3325e
|
@ -38,6 +38,7 @@
|
|||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages curl)
|
||||
#:use-module (gnu packages crypto)
|
||||
#:use-module (gnu packages emacs)
|
||||
#:use-module (gnu packages openldap)
|
||||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages perl-check)
|
||||
|
@ -738,6 +739,16 @@ including tools for signing keys, keyring analysis, and party preparation.
|
|||
(ftp-directory . "/gcrypt/pinentry")
|
||||
(upstream-name . "pinentry")))))
|
||||
|
||||
(define-public pinentry-emacs
|
||||
(package
|
||||
(inherit pinentry-tty)
|
||||
(name "pinentry-emacs")
|
||||
(arguments
|
||||
`(#:configure-flags '("--enable-pinentry-emacs")))
|
||||
(description
|
||||
"Pinentry provides a console and an Emacs interface that allows users to
|
||||
enter a passphrase when required by @code{gpg} or other software.")))
|
||||
|
||||
(define-public pinentry-gtk2
|
||||
(package
|
||||
(inherit pinentry-tty)
|
||||
|
|
Reference in New Issue