Skip to content

Commit

Permalink
texlive.bin: Fix duplicate patch definition
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Mar 1, 2018
1 parent fbd90af commit 1ad37a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/typesetting/tex/texlive/bin.nix
Expand Up @@ -161,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 patches;
inherit (common) src;

hardeningDisable = [ "format" ];

Expand All @@ -176,7 +176,7 @@ core-big = stdenv.mkDerivation { #TODO: upmendex
# http://tex.stackexchange.com/questions/97999/when-to-use-luajittex-in-favour-of-luatex
];

patches = [ ./luatex-gcc7.patch ];
patches = common.patches ++ [ ./luatex-gcc7.patch ];

configureScript = ":";

Expand Down

0 comments on commit 1ad37a8

Please sign in to comment.