gnu: icu4c: Patch RUNPATH of libraries.
[jackhill/guix/guix.git] / gnu / packages / gnupg.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
84a3e3b7 2;;; Copyright © 2012, 2013 Ludovic Courtès <ludo@gnu.org>
ea4d96c6 3;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
8d1939e4 4;;;
233e7676 5;;; This file is part of GNU Guix.
8d1939e4 6;;;
233e7676 7;;; GNU Guix is free software; you can redistribute it and/or modify it
8d1939e4
LC
8;;; under the terms of the GNU General Public License as published by
9;;; the Free Software Foundation; either version 3 of the License, or (at
10;;; your option) any later version.
11;;;
233e7676 12;;; GNU Guix is distributed in the hope that it will be useful, but
8d1939e4
LC
13;;; WITHOUT ANY WARRANTY; without even the implied warranty of
14;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15;;; GNU General Public License for more details.
16;;;
17;;; You should have received a copy of the GNU General Public License
233e7676 18;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
8d1939e4 19
1ffa7090 20(define-module (gnu packages gnupg)
4a44e743 21 #:use-module (guix licenses)
01e11826
AE
22 #:use-module (gnu packages curl)
23 #:use-module (gnu packages openldap)
ea4d96c6 24 #:use-module (gnu packages perl)
1ffa7090 25 #:use-module (gnu packages pth)
ea4d96c6 26 #:use-module (gnu packages python)
1ffa7090
LC
27 #:use-module (gnu packages readline)
28 #:use-module ((gnu packages compression)
4a44e743 29 #:renamer (symbol-prefix-proc 'guix:))
8d1939e4 30 #:use-module (guix packages)
87f5d366 31 #:use-module (guix download)
8d1939e4
LC
32 #:use-module (guix build-system gnu))
33
34(define-public libgpg-error
35 (package
36 (name "libgpg-error")
e0bb2e6b 37 (version "1.12")
8d1939e4
LC
38 (source
39 (origin
87f5d366 40 (method url-fetch)
0db342a5 41 (uri (string-append "mirror://gnupg/libgpg-error/libgpg-error-"
8d1939e4
LC
42 version ".tar.bz2"))
43 (sha256
44 (base32
e0bb2e6b 45 "0pz58vr12qihq2f0bypjxsb6cf6ajq5258fmfm8s6lvwm3b9xz6a"))))
8d1939e4
LC
46 (build-system gnu-build-system)
47 (home-page "http://gnupg.org")
48 (synopsis
49 "Libgpg-error, a small library that defines common error values for all GnuPG components")
50 (description
51 "Libgpg-error is a small library that defines common error values
52for all GnuPG components. Among these are GPG, GPGSM, GPGME,
53GPG-Agent, libgcrypt, Libksba, DirMngr, Pinentry, SmartCard
54Daemon and possibly more in the future.")
4a44e743 55 (license lgpl2.0+)))
8d1939e4
LC
56
57(define-public libgcrypt
58 (package
59 (name "libgcrypt")
24f3e788 60 (version "1.5.3")
84a3e3b7
LC
61 (source (origin
62 (method url-fetch)
63 (uri (string-append "mirror://gnupg/libgcrypt/libgcrypt-"
64 version ".tar.bz2"))
65 (sha256
66 (base32
24f3e788 67 "1lar8y3lh61zl5flljpz540d78g99h4d5idfwrfw8lm3gm737xdw"))))
8d1939e4
LC
68 (build-system gnu-build-system)
69 (propagated-inputs
70 `(("libgpg-error" ,libgpg-error)))
71 (home-page "http://gnupg.org/")
f50d2669 72 (synopsis "Cryptographic function library")
8d1939e4
LC
73 (description
74 "GNU Libgcrypt is a general purpose cryptographic library based on
75the code from GnuPG. It provides functions for all
76cryptographic building blocks: symmetric ciphers, hash
77algorithms, MACs, public key algorithms, large integer
78functions, random numbers and a lot of supporting functions.")
4a44e743 79 (license lgpl2.0+)))
8d1939e4
LC
80
81(define-public libassuan
82 (package
83 (name "libassuan")
e0bb2e6b 84 (version "2.1.1")
8d1939e4
LC
85 (source
86 (origin
87f5d366 87 (method url-fetch)
0db342a5 88 (uri (string-append "mirror://gnupg/libassuan/libassuan-"
8d1939e4
LC
89 version ".tar.bz2"))
90 (sha256
91 (base32
e0bb2e6b 92 "1783nb0b6nr9yjhb5wfh8ykc5w89f4anppz1kz9913mqg5vxdqi3"))))
8d1939e4
LC
93 (build-system gnu-build-system)
94 (propagated-inputs
95 `(("libgpg-error" ,libgpg-error) ("pth" ,pth)))
96 (home-page "http://gnupg.org")
97 (synopsis
98 "Libassuan, the IPC library used by GnuPG and related software")
99 (description
100 "Libassuan is a small library implementing the so-called Assuan
101protocol. This protocol is used for IPC between most newer
102GnuPG components. Both, server and client side functions are
103provided.")
4a44e743 104 (license lgpl2.0+)))
8d1939e4
LC
105
106(define-public libksba
107 (package
108 (name "libksba")
98fbd7ce 109 (version "1.3.0")
8d1939e4
LC
110 (source
111 (origin
87f5d366 112 (method url-fetch)
8d1939e4 113 (uri (string-append
0db342a5 114 "mirror://gnupg/libksba/libksba-"
8d1939e4
LC
115 version ".tar.bz2"))
116 (sha256
117 (base32
98fbd7ce 118 "0w8rfb6yhcwkwzvjafrashcygy4hd9xwwmvlnkfd1m2h0paywqas"))))
8d1939e4
LC
119 (build-system gnu-build-system)
120 (propagated-inputs
121 `(("libgpg-error" ,libgpg-error)))
122 (home-page "http://www.gnupg.org")
123 (synopsis
124 "Libksba is a CMS and X.509 access library under development")
125 (description
126 "KSBA (pronounced Kasbah) is a library to make X.509 certificates
127as well as the CMS easily accessible by other applications. Both
128specifications are building blocks of S/MIME and TLS.")
4a44e743 129 (license gpl3+)))
8d1939e4
LC
130
131(define-public gnupg
132 (package
133 (name "gnupg")
de73a878 134 (version "2.0.22")
8d1939e4
LC
135 (source
136 (origin
87f5d366 137 (method url-fetch)
0db342a5
LC
138 (uri (string-append "mirror://gnupg/gnupg/gnupg-" version
139 ".tar.bz2"))
8d1939e4
LC
140 (sha256
141 (base32
de73a878 142 "0lg210acj2rxq291q4cwamg9gx6gh2prb1xa93y5jhw5b6r0lza3"))))
8d1939e4
LC
143 (build-system gnu-build-system)
144 (inputs
f1be8061 145 `(("bzip2" ,guix:bzip2)
01e11826 146 ("curl" ,curl)
8d1939e4
LC
147 ("libassuan" ,libassuan)
148 ("libgcrypt" ,libgcrypt)
01e11826 149 ("libgpg-error" ,libgpg-error)
8d1939e4
LC
150 ("libksba" ,libksba)
151 ("pth" ,pth)
01e11826 152 ("openldap" ,openldap)
4a44e743 153 ("zlib" ,guix:zlib)
8d1939e4 154 ("readline" ,readline)))
30e9cbb4
AE
155 (arguments
156 `(#:phases
157 (alist-replace
158 'configure
159 (lambda* (#:key #:allow-other-keys #:rest args)
160 (let ((configure (assoc-ref %standard-phases 'configure)))
161 (substitute* "tests/openpgp/Makefile.in"
162 (("/bin/sh") (which "bash")))
163 (apply configure args)))
164 %standard-phases)))
8d1939e4 165 (home-page "http://gnupg.org/")
f50d2669 166 (synopsis "GNU Privacy Guard")
8d1939e4
LC
167 (description
168 "GnuPG is the GNU project's complete and free implementation of
169the OpenPGP standard as defined by RFC4880. GnuPG allows to
170encrypt and sign your data and communication, features a
171versatile key managment system as well as access modules for all
172kind of public key directories. GnuPG, also known as GPG, is a
173command line tool with features for easy integration with other
174applications. A wealth of frontend applications and libraries
175are available. Version 2 of GnuPG also provides support for
176S/MIME.")
4a44e743 177 (license gpl3+)))
ea4d96c6
AE
178
179(define-public pius
180 (package
181 (name "pius")
182 (version "2.0.9")
183 (source (origin
184 (method url-fetch)
185 (uri (string-append "mirror://sourceforge/pgpius/pius/"
186 version "/pius-"
187 version ".tar.bz2"))
188 (sha256 (base32
189 "1g1jly3wl4ks6h8ydkygyl2c4i7v3z91rg42005m6vm70y1d8b3d"))))
190 (build-system gnu-build-system)
191 (inputs `(("perl" ,perl)
ee3e314b 192 ("python" ,python-wrapper)
9eed6f9b 193 ("gpg" ,gnupg)))
ea4d96c6
AE
194 (arguments
195 `(#:tests? #f
196 #:phases
197 (alist-replace
198 'configure
199 (lambda* (#:key #:allow-other-keys) #t)
200 (alist-replace
201 'build
202 (lambda* (#:key #:allow-other-keys) #t)
203 (alist-replace
204 'install
9eed6f9b
LC
205 (lambda* (#:key inputs outputs #:allow-other-keys)
206 (let* ((out (assoc-ref outputs "out"))
207 (gpg (string-append (assoc-ref inputs "gpg")
208 "/bin/gpg2")))
ea4d96c6
AE
209 (mkdir out)
210 (mkdir (string-append out "/bin"))
9eed6f9b
LC
211 (for-each (lambda (file)
212 (substitute* file
213 (("/usr/bin/gpg") gpg))
214 (copy-file file (string-append out "/bin/" file)))
215 '("pius" "pius-keyring-mgr" "pius-party-worksheet"))))
ea4d96c6 216 %standard-phases)))))
9eed6f9b 217 (synopsis "Programs to simplify GnuPG key signing")
ea4d96c6
AE
218 (description
219 "Pius (PGP Individual UID Signer) helps attendees of PGP keysigning
220parties. It is the main utility and makes it possible to quickly and easily
221sign each UID on a set of PGP keys. It is designed to take the pain out of
222the sign-all-the-keys part of PGP Keysigning Party while adding security
223to the process.
224
225pius-keyring-mgr and pius-party-worksheet help organisers of
226PGP keysigning parties.")
227 (license gpl2)
228 (home-page "http://www.phildev.net/pius/index.shtml")))
96be765c
AE
229
230(define-public signing-party
231 (package
232 (name "signing-party")
233 (version "1.1.4")
234 (source (origin
235 (method url-fetch)
236 (uri (string-append "http://ftp.debian.org/debian/pool/main/s/signing-party/signing-party_"
237 version ".orig.tar.gz"))
238 (sha256 (base32
239 "188gp0prbh8qs29lq3pbf0qibfd6jq4fk7i0pfrybl8aahvm84rx"))))
240 (build-system gnu-build-system)
241 (inputs `(("perl" ,perl)))
242 (arguments
243 `(#:tests? #f
244 #:phases
245 (alist-replace
246 'unpack
247 (lambda* (#:key #:allow-other-keys #:rest args)
248 (let ((unpack (assoc-ref %standard-phases 'unpack)))
249 (apply unpack args)
250 ;; remove spurious symlink
251 (delete-file "keyanalyze/pgpring/depcomp")))
252 (alist-replace
253 'configure
254 (lambda* (#:key outputs #:allow-other-keys)
255 (let ((out (assoc-ref outputs "out")))
256 (substitute* "keyanalyze/Makefile"
257 (("LDLIBS") (string-append "CC=" (which "gcc") "\nLDLIBS")))
258 (substitute* "keyanalyze/Makefile"
259 (("./configure") (string-append "./configure --prefix=" out)))
260 (substitute* "keyanalyze/pgpring/configure"
261 (("/bin/sh") (which "bash")))
262 (substitute* "gpgwrap/Makefile"
263 (("\\} clean") (string-append "} clean\ninstall:\n\tinstall -D bin/gpgwrap "
264 out "/bin/gpgwrap\n")))
265 (substitute* '("gpgsigs/Makefile" "keyanalyze/Makefile"
266 "keylookup/Makefile" "sig2dot/Makefile"
267 "springgraph/Makefile")
268 (("/usr") out))))
269 (alist-replace
270 'install
271 (lambda* (#:key outputs #:allow-other-keys #:rest args)
272 (let ((out (assoc-ref outputs "out"))
273 (install (assoc-ref %standard-phases 'install)))
274 (apply install args)
275 (for-each
276 (lambda (dir file)
277 (copy-file (string-append dir "/" file)
278 (string-append out "/bin/" file)))
279 '("caff" "caff" "caff" "gpgdir" "gpg-key2ps"
280 "gpglist" "gpg-mailkeys" "gpgparticipants")
281 '("caff" "pgp-clean" "pgp-fixkey" "gpgdir" "gpg-key2ps"
282 "gpglist" "gpg-mailkeys" "gpgparticipants"))
283 (for-each
284 (lambda (dir file)
285 (copy-file (string-append dir "/" file)
286 (string-append out "/share/man/man1/" file)))
287 '("caff" "caff" "caff" "gpgdir"
288 "gpg-key2ps" "gpglist" "gpg-mailkeys"
289 "gpgparticipants" "gpgsigs" "gpgwrap/doc"
290 "keyanalyze" "keyanalyze/pgpring" "keyanalyze")
291 '("caff.1" "pgp-clean.1" "pgp-fixkey.1" "gpgdir.1"
292 "gpg-key2ps.1" "gpglist.1" "gpg-mailkeys.1"
293 "gpgparticipants.1" "gpgsigs.1" "gpgwrap.1"
294 "process_keys.1" "pgpring.1" "keyanalyze.1"))))
295 %standard-phases)))))
296 (synopsis "collection of scripts for simplifying gnupg key signing")
297 (description
298 "signing-party is a collection for all kinds of PGP/GnuPG related things,
299including tools for signing keys, keyring analysis, and party preparation.
300
301 * caff: CA - Fire and Forget signs and mails a key
302
303 * pgp-clean: removes all non-self signatures from key
304
305 * pgp-fixkey: removes broken packets from keys
306
307 * gpg-mailkeys: simply mail out a signed key to its owner
308
309 * gpg-key2ps: generate PostScript file with fingerprint paper strips
310
311 * gpgdir: recursive directory encryption tool
312
313 * gpglist: show who signed which of your UIDs
314
315 * gpgsigs: annotates list of GnuPG keys with already done signatures
316
317 * gpgparticipants: create list of party participants for the organiser
318
319 * gpgwrap: a passphrase wrapper
320
321 * keyanalyze: minimum signing distance (MSD) analysis on keyrings
322
323 * keylookup: ncurses wrapper around gpg --search
324
325 * sig2dot: converts a list of GnuPG signatures to a .dot file
326
327 * springgraph: creates a graph from a .dot file")
328 ;; gpl2+ for almost all programs, except for keyanalyze: gpl2
329 ;; and caff and gpgsigs: bsd-3, see
330 ;; http://packages.debian.org/changelogs/pool/main/s/signing-party/current/copyright
331 (license gpl2)
332 (home-page "http://pgp-tools.alioth.debian.org/")))