summary refs log tree commit diff
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-11-07 22:57:41 +0100
committerVladimír Čunát <vcunat@gmail.com>2016-11-07 22:57:41 +0100
commit3e6d04da57429810ee4bfb1e92779bde2f47c5a8 (patch)
tree765676c96d1f5ea1d78e354ac7c8ef2590a01bea /pkgs/tools/typesetting
parent7fa157c5587d40ca757658e2c8017055c3c0419e (diff)
downloadnixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar.gz
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar.bz2
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar.lz
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar.xz
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.tar.zst
nixlib-3e6d04da57429810ee4bfb1e92779bde2f47c5a8.zip
texlive: disable xindy on Darwin for now (#20062)
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/tex/texlive/bin.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkgs/tools/typesetting/tex/texlive/bin.nix b/pkgs/tools/typesetting/tex/texlive/bin.nix
index d41dbcfef0d6..5591f64cee94 100644
--- a/pkgs/tools/typesetting/tex/texlive/bin.nix
+++ b/pkgs/tools/typesetting/tex/texlive/bin.nix
@@ -279,6 +279,10 @@ xdvi = stdenv.mkDerivation {
   # TODO: it's suspicious that mktexpk generates fonts into ~/.texlive2014
 };
 
+} # un-indented
+
+// stdenv.lib.optionalAttrs (!stdenv.isDarwin) # see #20062
+{
 
 xindy = stdenv.mkDerivation {
   name = "texlive-xindy.bin-${version}";
@@ -309,6 +313,6 @@ xindy = stdenv.mkDerivation {
   '';
 };
 
+}
 
-} # un-indented