Files
nixpkgs/pkgs/by-name/pg/pgpdump/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

39 lines
829 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
supportCompressedPackets ? true,
zlib,
bzip2,
}:
stdenv.mkDerivation rec {
pname = "pgpdump";
version = "0.36";
src = fetchFromGitHub {
owner = "kazu-yamamoto";
repo = "pgpdump";
rev = "v${version}";
sha256 = "sha256-JKedgHCTDnvLyLR3nGl4XFAaxXDU1TgHrxPMlRFwtBo=";
};
buildInputs = lib.optionals supportCompressedPackets [
zlib
bzip2
];
meta = with lib; {
description = "PGP packet visualizer";
mainProgram = "pgpdump";
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.unix;
maintainers = [ ];
};
}