pdf2djvu: 0.9.18.2 -> 0.9.19 (#256782)

Diff: https://github.com/jwilk/pdf2djvu/compare/0.9.18.2...0.9.19

authored by Peder Bergebakken Sundt and committed by GitHub 49787f4d 72b10ff6

+3 -27
+3 -27
pkgs/tools/typesetting/pdf2djvu/default.nix
··· 16 16 }: 17 17 18 18 stdenv.mkDerivation rec { 19 - version = "0.9.18.2"; 19 + version = "0.9.19"; 20 20 pname = "pdf2djvu"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "jwilk"; 24 24 repo = "pdf2djvu"; 25 25 rev = version; 26 - sha256 = "s6n7nDO15DZSJ1EOPoNvjdFv/QtOoGiUa2b/k3kzWe8="; 26 + sha256 = "sha256-j4mYdmLZ56qTA1KbWBjBvyTyLaeuIITKYsALRIO7lj0="; 27 27 }; 28 28 29 - patches = [ 30 - # Fix build with Poppler 22.03. 31 - (fetchpatch { 32 - url = "https://github.com/jwilk/pdf2djvu/commit/e170ad557d5f13daeeac047dfaa79347bbe5062f.patch"; 33 - sha256 = "OPK2UWVs+E2uOEaxPtLWmVL28yCxaeJKscY9ziAbS7E="; 34 - }) 35 - (fetchpatch { 36 - url = "https://github.com/jwilk/pdf2djvu/commit/956fedc7e0831126b9006efedad5519c14201c52.patch"; 37 - sha256 = "JF1xvvL2WyMu6GjdrPLlRC6eC6vGLbVurQcNy3AOOXA="; 38 - }) 39 - (fetchpatch { 40 - url = "https://github.com/jwilk/pdf2djvu/commit/dca43e8182174bc04e107eaefcafcfdfdf9bcd61.patch"; 41 - sha256 = "0JcfDaVZpuv6VfUJ2HuxRqgntZ/t8AzU0RG/E83BWGY="; 42 - }) 43 - (fetchpatch { 44 - url = "https://github.com/jwilk/pdf2djvu/commit/81b635e014ebd0240a8719cc39b6a1b759cc6a98.patch"; 45 - sha256 = "LBmT4eflLd23X7gg7IbqGe3PfTGldEGFLEKImV4nbB0="; 46 - postFetch = '' 47 - # The file was renamed after the release. 48 - sed -i "s/main.cc/pdf2djvu.cc/g" "$out" 49 - ''; 50 - }) 51 - ]; 52 - 53 29 nativeBuildInputs = [ autoreconfHook pkg-config ]; 54 30 55 31 buildInputs = [ ··· 77 53 78 54 enableParallelBuilding = true; 79 55 80 - # Required by Poppler 56 + # Required by Poppler on darwin 81 57 # https://github.com/jwilk/pdf2djvu/commit/373e065faf2f0d868a3700788d20a96e9528bb12 82 58 CXXFLAGS = "-std=c++17"; 83 59