pgpdump: 0.36 -> 0.37

Changes: https://github.com/kazu-yamamoto/pgpdump/compare/v0.36...v0.37
This commit is contained in:
Sergei Trofimovich
2026-02-12 22:35:11 +00:00
parent 3cbf09a009
commit 4fc62b5f1d
+5 -11
View File
@@ -2,31 +2,25 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch2,
supportCompressedPackets ? true,
zlib,
bzip2,
autoreconfHook,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "pgpdump";
version = "0.36";
version = "0.37";
src = fetchFromGitHub {
owner = "kazu-yamamoto";
repo = "pgpdump";
rev = "v${finalAttrs.version}";
sha256 = "sha256-JKedgHCTDnvLyLR3nGl4XFAaxXDU1TgHrxPMlRFwtBo=";
sha256 = "sha256-nB7f6VTxRidymi9RV7W1x9JbWi9Eoa/CYzYmekYDVOo=";
};
patches = [
# Fix for GCC 15. Remove on next package update.
# https://github.com/kazu-yamamoto/pgpdump/pull/45
(fetchpatch2 {
name = "fix-c23-compatibility.patch";
url = "https://github.com/kazu-yamamoto/pgpdump/commit/541442dc04259bde680b46742522177be40cc065.patch?full_index=1";
hash = "sha256-ye+B8hy0etGcwCG9pD0jCnrg+U5VpFkERad61CexW9Y=";
})
nativeBuildInputs = [
autoreconfHook
];
buildInputs = lib.optionals supportCompressedPackets [