18 stdenv.mkDerivation rec {
22 src = fetchFromGitHub {
26 sha256 = "s6n7nDO15DZSJ1EOPoNvjdFv/QtOoGiUa2b/k3kzWe8=";
30 # Fix build with Poppler 22.03.
32 url = "https://github.com/jwilk/pdf2djvu/commit/e170ad557d5f13daeeac047dfaa79347bbe5062f.patch";
33 sha256 = "OPK2UWVs+E2uOEaxPtLWmVL28yCxaeJKscY9ziAbS7E=";
36 url = "https://github.com/jwilk/pdf2djvu/commit/956fedc7e0831126b9006efedad5519c14201c52.patch";
37 sha256 = "JF1xvvL2WyMu6GjdrPLlRC6eC6vGLbVurQcNy3AOOXA=";
40 url = "https://github.com/jwilk/pdf2djvu/commit/dca43e8182174bc04e107eaefcafcfdfdf9bcd61.patch";
41 sha256 = "0JcfDaVZpuv6VfUJ2HuxRqgntZ/t8AzU0RG/E83BWGY=";
44 url = "https://github.com/jwilk/pdf2djvu/commit/81b635e014ebd0240a8719cc39b6a1b759cc6a98.patch";
45 sha256 = "LBmT4eflLd23X7gg7IbqGe3PfTGldEGFLEKImV4nbB0=";
47 # The file was renamed after the release.
48 sed -i "s/main.cc/pdf2djvu.cc/g" "$out"
53 nativeBuildInputs = [ autoreconfHook pkg-config ];
66 substituteInPlace private/autogen \
67 --replace /usr/share/gettext ${gettext}/share/gettext \
68 --replace /usr/share/libtool ${libtool}/share/libtool
70 substituteInPlace configure.ac \
71 --replace '$djvulibre_bin_path' ${djvulibre.bin}/bin
78 enableParallelBuilding = true;
81 # https://github.com/jwilk/pdf2djvu/commit/373e065faf2f0d868a3700788d20a96e9528bb12
82 CXXFLAGS = "-std=c++17";
85 description = "Creates djvu files from PDF files";
86 homepage = "https://jwilk.net/software/pdf2djvu";
87 license = licenses.gpl2;
88 maintainers = with maintainers; [ pSub ];