gnu: Add pinentry-gnome3.
* gnu/packages/gnupg.scm (pinentry-gnome3): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
9614897b71
commit
41edb23f5e
|
@ -8,6 +8,7 @@
|
||||||
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
|
||||||
;;; Copyright © 2016 Nils Gillmann <ng0@libertad.pw>
|
;;; Copyright © 2016 Nils Gillmann <ng0@libertad.pw>
|
||||||
|
;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -637,6 +638,22 @@ including tools for signing keys, keyring analysis, and party preparation.
|
||||||
"Pinentry provides a console and a GTK+ GUI that allows users to enter a
|
"Pinentry provides a console and a GTK+ GUI that allows users to enter a
|
||||||
passphrase when @code{gpg} is run and needs it.")))
|
passphrase when @code{gpg} is run and needs it.")))
|
||||||
|
|
||||||
|
(define-public pinentry-gnome3
|
||||||
|
(package
|
||||||
|
(inherit pinentry-tty)
|
||||||
|
(name "pinentry-gnome3")
|
||||||
|
(inputs
|
||||||
|
`(("gtk+" ,gtk+-2)
|
||||||
|
("gcr" ,gcr)
|
||||||
|
("glib" ,glib)
|
||||||
|
,@(package-inputs pinentry-tty)))
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '("--enable-pinentry-gnome3")))
|
||||||
|
(description
|
||||||
|
"Pinentry provides a console and a GUI designed for use with GNOME@tie{}3
|
||||||
|
that allows users to enter a passphrase when required by @code{gpg} or other
|
||||||
|
software.")))
|
||||||
|
|
||||||
(define-public pinentry-qt
|
(define-public pinentry-qt
|
||||||
(package
|
(package
|
||||||
(inherit pinentry-tty)
|
(inherit pinentry-tty)
|
||||||
|
|
Loading…
Reference in New Issue