[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/04: gnu: Add gpa.
From: |
Ludovic Courtès |
Subject: |
04/04: gnu: Add gpa. |
Date: |
Tue, 26 Sep 2017 04:37:37 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 8384499c04978dc8e16f2beb9ee940293c7800c5
Author: ng0 <address@hidden>
Date: Sun Sep 24 15:52:05 2017 +0000
gnu: Add gpa.
* gnu/packages/gnupg.scm (gpa): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
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 c6af5ca..ffad57e 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -7,7 +7,7 @@
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <address@hidden>
;;; Copyright © 2015, 2016 Ricardo Wurmus <address@hidden>
;;; Copyright © 2016 Christopher Allan Webber <address@hidden>
-;;; Copyright © 2016 ng0 <address@hidden>
+;;; Copyright © 2016, 2017 ng0 <address@hidden>
;;; Copyright © 2016 Christopher Baines <address@hidden>
;;; Copyright © 2016 Mike Gerwitz <address@hidden>
;;; Copyright © 2016 Troy Sankey <address@hidden>
@@ -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.10")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnupg/gpa/"
+ name "-" version ".tar.bz2"))
+ (sha256
+ (base32
+ "09xphbi2456qynwqq5n0yh0zdmdi2ggrj3wk4hsyh5lrzlvcrff3"))))
+ (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/")
+ (synopsis "Graphical user interface for GnuPG")
+ (description
+ "GPA, the GNU Privacy Assistant, is a graphical user interface for
address@hidden://gnupg.org, GnuPG}. It can be used to encrypt, decrypt, and
sign
+files, to verify signatures, and to manage the private and public keys.")
+ (license license:gpl3+)))