summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-05-01 06:07:39 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-05-01 06:10:29 -0500
commit2c6ecba31ee935dabdaccbc15bd3b33dc2be2543 (patch)
treedc13aee3dd1c82d248f1922b0cf2c4b53e59eff1 /pkgs/tools/typesetting
parentebbeae56bdce0226ca66414160345ccdf457284b (diff)
texlive.bin.core-big: add libX11 to buildInputs
metafont requires libX11
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/bin.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix
index 04461a825ee1..18fb45dbfe67 100644
--- a/pkgs/tools/typesetting/tex/texlive/bin.nix
+++ b/pkgs/tools/typesetting/tex/texlive/bin.nix
@@ -190,7 +190,7 @@ core-big = stdenv.mkDerivation { #TODO: upmendex
hardeningDisable = [ "format" ];
inherit (core) nativeBuildInputs;
- buildInputs = core.buildInputs ++ [ core cairo harfbuzz icu graphite2 ];
+ buildInputs = core.buildInputs ++ [ core cairo harfbuzz icu graphite2 libX11 ];
configureFlags = common.configureFlags
++ withSystemLibs [ "kpathsea" "ptexenc" "cairo" "harfbuzz" "icu" "graphite2" ]