3
0
Fork 0
forked from mirrors/nixpkgs

texlive.bin: fix compatibility with poppler 0.62

This commit is contained in:
Jan Tojnar 2018-02-23 03:00:47 +01:00
parent 8d490ca993
commit 32cc682624
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -28,6 +28,14 @@ let
sha256 = "1amjrxyasplv4alfwcxwnw4nrx7dz2ydmddkq16k6hg90i9njq81"; 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 = [ configureFlags = [
"--with-banner-add=/NixOS.org" "--with-banner-add=/NixOS.org"
"--disable-missing" "--disable-native-texlive-build" "--disable-missing" "--disable-native-texlive-build"
@ -58,7 +66,7 @@ texliveYear = year;
core = stdenv.mkDerivation rec { core = stdenv.mkDerivation rec {
name = "texlive-bin-${version}"; name = "texlive-bin-${version}";
inherit (common) src; inherit (common) src patches;
outputs = [ "out" "doc" ]; outputs = [ "out" "doc" ];
@ -153,7 +161,7 @@ inherit (core-big) metafont metapost luatex xetex;
core-big = stdenv.mkDerivation { #TODO: upmendex core-big = stdenv.mkDerivation { #TODO: upmendex
name = "texlive-core-big.bin-${version}"; name = "texlive-core-big.bin-${version}";
inherit (common) src; inherit (common) src patches;
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];