about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2021-05-14 01:40:09 +0200
committerJan Tojnar <jtojnar@gmail.com>2021-05-14 01:40:09 +0200
commitac6a4f7cf5b14247f02736804f440c56a98ca1c6 (patch)
tree4a10835a9fe4614923cb445ce43f475240c7c303 /pkgs/tools/typesetting
parent882b692c4f238df3a63140b891b54fd9a7d87a4f (diff)
parent39e3f7c2cc3d5ad71561136df41beca52bfa35c6 (diff)
downloadnixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar.gz
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar.bz2
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar.lz
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar.xz
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.tar.zst
nixlib-ac6a4f7cf5b14247f02736804f440c56a98ca1c6.zip
Merge branch 'staging-next' into staging
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/pdf2djvu/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/pkgs/tools/typesetting/pdf2djvu/default.nix b/pkgs/tools/typesetting/pdf2djvu/default.nix
index 370d54adde97..47256f9f7ee6 100644
--- a/pkgs/tools/typesetting/pdf2djvu/default.nix
+++ b/pkgs/tools/typesetting/pdf2djvu/default.nix
@@ -1,6 +1,7 @@
 { stdenv
 , lib
 , fetchFromGitHub
+, fetchpatch
 , autoreconfHook
 , gettext
 , libtool
@@ -25,6 +26,15 @@ stdenv.mkDerivation rec {
     sha256 = "1igabfy3fd7qndihmkfk9incc15pjxpxh2cn5pfw5fxfwrpjrarn";
   };
 
+  patches = [
+    # Not included in 0.9.17.1, but will be in the next version.
+    (fetchpatch {
+      name = "no-poppler-splash.patch";
+      url = "https://github.com/jwilk/pdf2djvu/commit/2ec7eee57a47bbfd296badaa03dc20bf71b50201.patch";
+      sha256 = "03kap7k2j29r16qgl781cxpswzg3r2yn513cqycgl0vax2xj3gly";
+    })
+  ];
+
   nativeBuildInputs = [ autoreconfHook pkg-config ];
 
   buildInputs = [