mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge #35370: texlive.bin: fix with poppler 0.62
This commit is contained in:
commit
63ca2cc786
@ -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" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user