mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 14:16:55 -05:00
gnu: Add pinentry-qt.
* gnu/packages/gnupg.scm (pinentry-qt): New variable.
This commit is contained in:
parent
c607b7011c
commit
54df75582f
1 changed files with 12 additions and 0 deletions
|
@ -31,6 +31,7 @@ (define-module (gnu packages gnupg)
|
|||
#:use-module (gnu packages perl)
|
||||
#:use-module (gnu packages pth)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module (gnu packages readline)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages databases)
|
||||
|
@ -607,6 +608,17 @@ (define-public pinentry-gtk2
|
|||
"Pinentry provides a console and a GTK+ GUI that allows users to enter a
|
||||
passphrase when @code{gpg} or @code{gpg2} is run and needs it.")))
|
||||
|
||||
(define-public pinentry-qt
|
||||
(package
|
||||
(inherit pinentry-tty)
|
||||
(name "pinentry-qt")
|
||||
(inputs
|
||||
`(("qt" ,qt)
|
||||
,@(package-inputs pinentry-tty)))
|
||||
(description
|
||||
"Pinentry provides a console and a Qt GUI that allows users to enter a
|
||||
passphrase when @code{gpg} or @code{gpg2} is run and needs it.")))
|
||||
|
||||
(define-public pinentry
|
||||
(package (inherit pinentry-gtk2)
|
||||
(name "pinentry")))
|
||||
|
|
Loading…
Reference in a new issue