pgpdump: init at v0.31
Add the package "pgpdump" at version v0.31 under the category "tools/security", add it to the top-level package collection and set myself as the maintainer (I added myself to lib/maintainers.nix). I have tested this package under NixOS and Gentoo+Nix.
This commit is contained in:
parent
66d622fbd0
commit
8268f0a759
@ -335,6 +335,7 @@
|
|||||||
pmahoney = "Patrick Mahoney <pat@polycrystal.org>";
|
pmahoney = "Patrick Mahoney <pat@polycrystal.org>";
|
||||||
pmiddend = "Philipp Middendorf <pmidden@secure.mailbox.org>";
|
pmiddend = "Philipp Middendorf <pmidden@secure.mailbox.org>";
|
||||||
prikhi = "Pavan Rikhi <pavan.rikhi@gmail.com>";
|
prikhi = "Pavan Rikhi <pavan.rikhi@gmail.com>";
|
||||||
|
primeos = "Michael Weiss <dev.primeos@gmail.com>";
|
||||||
profpatsch = "Profpatsch <mail@profpatsch.de>";
|
profpatsch = "Profpatsch <mail@profpatsch.de>";
|
||||||
proglodyte = "Proglodyte <proglodyte23@gmail.com>";
|
proglodyte = "Proglodyte <proglodyte23@gmail.com>";
|
||||||
pshendry = "Paul Hendry <paul@pshendry.com>";
|
pshendry = "Paul Hendry <paul@pshendry.com>";
|
||||||
|
26
pkgs/tools/security/pgpdump/default.nix
Normal file
26
pkgs/tools/security/pgpdump/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "pgpdump-${version}";
|
||||||
|
version = "0.31";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "kazu-yamamoto";
|
||||||
|
repo = "pgpdump";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "05ywdgxzq3976dsy95vgdx3nnhd9i9vypzyrkabpmnxphfnjfrb4";
|
||||||
|
};
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A PGP packet visualizer";
|
||||||
|
longDescription = ''
|
||||||
|
pgpdump is a PGP packet visualizer which displays the packet format of
|
||||||
|
OpenPGP (RFC 4880) and PGP version 2 (RFC 1991).
|
||||||
|
'';
|
||||||
|
homepage = "http://www.mew.org/~kazu/proj/pgpdump/en/";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ primeos ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -7093,6 +7093,8 @@ in
|
|||||||
gnupg1 = gnupg1orig;
|
gnupg1 = gnupg1orig;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
pgpdump = callPackage ../tools/security/pgpdump { };
|
||||||
|
|
||||||
gpgstats = callPackage ../tools/security/gpgstats { };
|
gpgstats = callPackage ../tools/security/gpgstats { };
|
||||||
|
|
||||||
gpshell = callPackage ../development/tools/misc/gpshell { };
|
gpshell = callPackage ../development/tools/misc/gpshell { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user