pdf2djvu: fix build with Poppler 22.03

This commit is contained in:
Jan Tojnar 2022-03-25 20:27:57 +01:00
parent 7904ab42d8
commit 013594c801

View File

@ -1,6 +1,7 @@
{ stdenv
, lib
, fetchFromGitHub
, fetchpatch
, autoreconfHook
, gettext
, libtool
@ -25,6 +26,30 @@ stdenv.mkDerivation rec {
sha256 = "s6n7nDO15DZSJ1EOPoNvjdFv/QtOoGiUa2b/k3kzWe8=";
};
patches = [
# Fix build with Poppler 22.03.
(fetchpatch {
url = "https://github.com/jwilk/pdf2djvu/commit/e170ad557d5f13daeeac047dfaa79347bbe5062f.patch";
sha256 = "OPK2UWVs+E2uOEaxPtLWmVL28yCxaeJKscY9ziAbS7E=";
})
(fetchpatch {
url = "https://github.com/jwilk/pdf2djvu/commit/956fedc7e0831126b9006efedad5519c14201c52.patch";
sha256 = "JF1xvvL2WyMu6GjdrPLlRC6eC6vGLbVurQcNy3AOOXA=";
})
(fetchpatch {
url = "https://github.com/jwilk/pdf2djvu/commit/dca43e8182174bc04e107eaefcafcfdfdf9bcd61.patch";
sha256 = "0JcfDaVZpuv6VfUJ2HuxRqgntZ/t8AzU0RG/E83BWGY=";
})
(fetchpatch {
url = "https://github.com/jwilk/pdf2djvu/commit/81b635e014ebd0240a8719cc39b6a1b759cc6a98.patch";
sha256 = "LBmT4eflLd23X7gg7IbqGe3PfTGldEGFLEKImV4nbB0=";
postFetch = ''
# The file was renamed after the release.
sed -i "s/main.cc/pdf2djvu.cc/g" "$out"
'';
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [