pgpdump: 0.36 -> 0.37
Changes: https://github.com/kazu-yamamoto/pgpdump/compare/v0.36...v0.37
This commit is contained in:
@@ -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 [
|
||||
|
||||
Reference in New Issue
Block a user