mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add pgpdump.
* gnu/packages/gnupg (pgpdump): New variable. * gnu/packages/package-management (diffoscope)[native-inputs]: Add pgpdump.
This commit is contained in:
parent
97f6004ca1
commit
ba7bd6c62d
2 changed files with 29 additions and 0 deletions
|
@ -907,6 +907,34 @@ (define-public paperkey
|
|||
them to transform your existing public key into a secret key.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public pgpdump
|
||||
(package
|
||||
(name "pgpdump")
|
||||
(version "0.33")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://www.mew.org/~kazu/proj/pgpdump/pgpdump-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1j001jra2m89n6cys3n0hs574bipjdzfxhzpnd4jfyv95mqwl7n4"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no make check
|
||||
#:configure-flags (list "--prefix=/")
|
||||
#:make-flags (list "CC=gcc"
|
||||
(string-append "DESTDIR=" (assoc-ref %outputs "out")))))
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
(home-page "https://www.mew.org/~kazu/proj/pgpdump/en/")
|
||||
(synopsis "PGP packet visualizer")
|
||||
(description "pgpdump displays the sequence of OpenPGP or PGP version 2
|
||||
packets from a file.
|
||||
|
||||
The output of this command is similar to GnuPG's list packets command,
|
||||
however, pgpdump produces more detailed and easier to understand output.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public gpa
|
||||
(package
|
||||
(name "gpa")
|
||||
|
|
|
@ -659,6 +659,7 @@ (define-public diffoscope
|
|||
;; no unversioned openjdk available
|
||||
("openjdk:jdk" ,openjdk12 "jdk")
|
||||
("openssh" ,openssh)
|
||||
("pgpdump" ,pgpdump)
|
||||
("poppler" ,poppler)
|
||||
("rpm" ,rpm)
|
||||
("sng" ,sng)
|
||||
|
|
Loading…
Reference in a new issue