From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christopher Baines Subject: [PATCH 2/3] gnu: Add pinentry-gnome3. Date: Sun, 9 Oct 2016 21:27:11 +0100 Message-ID: <20161009202712.4434-3-mail@cbaines.net> References: <20161009202712.4434-1-mail@cbaines.net> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41047) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btKh9-00065H-BR for guix-devel@gnu.org; Sun, 09 Oct 2016 16:27:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1btKh7-0001Yl-GW for guix-devel@gnu.org; Sun, 09 Oct 2016 16:27:38 -0400 Received: from li622-129.members.linode.com ([212.71.249.129]:57629 helo=mira.cbaines.net) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1btKh7-0001Vt-C7 for guix-devel@gnu.org; Sun, 09 Oct 2016 16:27:37 -0400 In-Reply-To: <20161009202712.4434-1-mail@cbaines.net> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/gnupg.scm (pinentry-gnome3): New variable. --- gnu/packages/gnupg.scm | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index b4b4f75..b80e39b 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -637,6 +637,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 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 3 that +allows users to enter a passphrase when required by @code{gpg} or other +software."))) + (define-public pinentry-qt (package (inherit pinentry-tty) -- 2.10.1