From 68759af86d86af34e59eaf1dbd036b51e64f7f43 Mon Sep 17 00:00:00 2001 From: ng0 Date: Sun, 24 Sep 2017 15:52:05 +0000 Subject: [PATCH] gnu: Add gpa. * gnu/packages/gnupg.scm (gpa): New variable. --- gnu/packages/gnupg.scm | 30 +++++++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm index c6af5caa4..b79e3a830 100644 --- a/gnu/packages/gnupg.scm +++ b/gnu/packages/gnupg.scm @@ -7,7 +7,7 @@ ;;; Copyright © 2015, 2016, 2017 Efraim Flashner ;;; Copyright © 2015, 2016 Ricardo Wurmus ;;; Copyright © 2016 Christopher Allan Webber -;;; Copyright © 2016 ng0 +;;; Copyright © 2016, 2017 ng0 ;;; Copyright © 2016 Christopher Baines ;;; Copyright © 2016 Mike Gerwitz ;;; Copyright © 2016 Troy Sankey @@ -822,3 +822,31 @@ qualities. To reconstruct a secret key, you re-enter those bytes (whether by hand, OCR, QR code, or the like) and paperkey can use them to transform your existing public key into a secret key.") (license license:gpl2+))) + +(define-public gpa + (package + (name "gpa") + (version "0.9.9") + (source + (origin + (method url-fetch) + (uri (string-append "ftp://ftp.gnupg.org/gcrypt/gpa/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0d235hcqai7m3qb7m9kvr2r4qg4714f87j9fdplwrlz1p4wdfa38")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("gnupg" ,gnupg) + ("gpgme" ,gpgme) + ("libassuan" ,libassuan) + ("libgpg-error" ,libgpg-error) + ("gtk+-2" ,gtk+-2))) + (home-page "https://gnupg.org/software/gpa/index.html") + (synopsis "GUI for GnuPG") + (description + "@defn{GNU Privacy Assistant} (GPA) is a graphical user +interface for the @defn{GNU Privacy Guard} (GnuPG).") + (license license:gpl3))) -- 2.14.1