about summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-02-28 19:22:29 -0500
committerShea Levy <shea@shealevy.com>2018-02-28 19:22:29 -0500
commit1ad37a8c6e627f8650a7c9c41e38a358146db860 (patch)
treea8f732855a2c6e5f8b3b76da84db0ad2ae76eae7 /pkgs/tools/typesetting
parentfbd90af01053ba13b5f2c5145cf1a18da9b22939 (diff)
downloadnixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar.gz
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar.bz2
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar.lz
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar.xz
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.tar.zst
nixlib-1ad37a8c6e627f8650a7c9c41e38a358146db860.zip
texlive.bin: Fix duplicate patch definition
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/bin.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix
index 1dd7072f4c52..8318ad2afe99 100644
--- a/pkgs/tools/typesetting/tex/texlive/bin.nix
+++ b/pkgs/tools/typesetting/tex/texlive/bin.nix
@@ -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" ];
 
@@ -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 = ":";