summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorChristopher Baines <mail@cbaines.net>2016-10-09 21:27:11 +0100
committerLudovic Courtès <ludo@gnu.org>2016-10-10 00:06:15 +0200
commit41edb23f5e13472309b5fdc0eb0e5730ec90e9ab (patch)
tree068fddb8e824af950374a5b446c7541f0d34811f /gnu
parent9614897b71e133a65433ad11de5581a89ffa6118 (diff)
gnu: Add pinentry-gnome3.
* gnu/packages/gnupg.scm (pinentry-gnome3): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/gnupg.scm17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index b4b4f75be1c..5fcc03a222c 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -8,6 +8,7 @@
8;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net> 8;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
9;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org> 9;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
10;;; Copyright © 2016 Nils Gillmann <ng0@libertad.pw> 10;;; Copyright © 2016 Nils Gillmann <ng0@libertad.pw>
11;;; Copyright © 2016 Christopher Baines <mail@cbaines.net>
11;;; 12;;;
12;;; This file is part of GNU Guix. 13;;; This file is part of GNU Guix.
13;;; 14;;;
@@ -637,6 +638,22 @@ including tools for signing keys, keyring analysis, and party preparation.
637 "Pinentry provides a console and a GTK+ GUI that allows users to enter a 638 "Pinentry provides a console and a GTK+ GUI that allows users to enter a
638passphrase when @code{gpg} is run and needs it."))) 639passphrase when @code{gpg} is run and needs it.")))
639 640
641(define-public pinentry-gnome3
642 (package
643 (inherit pinentry-tty)
644 (name "pinentry-gnome3")
645 (inputs
646 `(("gtk+" ,gtk+-2)
647 ("gcr" ,gcr)
648 ("glib" ,glib)
649 ,@(package-inputs pinentry-tty)))
650 (arguments
651 `(#:configure-flags '("--enable-pinentry-gnome3")))
652 (description
653 "Pinentry provides a console and a GUI designed for use with GNOME@tie{}3
654that allows users to enter a passphrase when required by @code{gpg} or other
655software.")))
656
640(define-public pinentry-qt 657(define-public pinentry-qt
641 (package 658 (package
642 (inherit pinentry-tty) 659 (inherit pinentry-tty)