about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2018-02-24 16:39:47 +0100
committerVladimír Čunát <vcunat@gmail.com>2018-02-24 22:30:23 +0100
commit63ca2cc78668969452e297012d50e2643fe7fc67 (patch)
tree334e60df586a4c888cf65bbaebca06e21d2ae9f4 /pkgs/tools/typesetting
parente571f14d39460fdd53eabd023c8b6050a750d9c3 (diff)
parent32cc6826245ccda337e809cb632a165d4b761359 (diff)
downloadnixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar.gz
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar.bz2
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar.lz
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar.xz
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.tar.zst
nixlib-63ca2cc78668969452e297012d50e2643fe7fc67.zip
Merge #35370: texlive.bin: fix with poppler 0.62
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/bin.nix12
1 files changed, 10 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix
index 44c2dc163178..6881d005a251 100644
--- a/pkgs/tools/typesetting/tex/texlive/bin.nix
+++ b/pkgs/tools/typesetting/tex/texlive/bin.nix
@@ -28,6 +28,14 @@ let
       sha256 = "1amjrxyasplv4alfwcxwnw4nrx7dz2ydmddkq16k6hg90i9njq81";
     };
 
+    patches = [
+      (fetchurl {
+        name = "texlive-poppler-0.59.patch";
+        url = https://git.archlinux.org/svntogit/packages.git/plain/trunk/texlive-poppler-0.59.patch?h=packages/texlive-bin&id=6308ec39bce2a4d735f6ff8a4e94473748d7b450;
+        sha256 = "1c4ikq4kxw48bi3i33bzpabrjvbk01fwjr2lz20gkc9kv8l0bg3n";
+      })
+    ];
+
     configureFlags = [
       "--with-banner-add=/NixOS.org"
       "--disable-missing" "--disable-native-texlive-build"
@@ -58,7 +66,7 @@ texliveYear = year;
 core = stdenv.mkDerivation rec {
   name = "texlive-bin-${version}";
 
-  inherit (common) src;
+  inherit (common) src patches;
 
   outputs = [ "out" "doc" ];
 
@@ -153,7 +161,7 @@ inherit (core-big) metafont metapost luatex xetex;
 core-big = stdenv.mkDerivation { #TODO: upmendex
   name = "texlive-core-big.bin-${version}";
 
-  inherit (common) src;
+  inherit (common) src patches;
 
   hardeningDisable = [ "format" ];