diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-06-26 10:21:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:45:40 +0200 |
commit | 78ed0f9cf9b52e1824570da342e46d9d0dcf12de (patch) | |
tree | 649f285d9fb306e49d2ae15d654d83f04ad0bbb8 | |
parent | 7bfc8cf966b8604d126f758b29027027fd0a7d08 (diff) | |
download | guix-78ed0f9cf9b52e1824570da342e46d9d0dcf12de.tar.gz guix-78ed0f9cf9b52e1824570da342e46d9d0dcf12de.zip |
gnu: texlive-autopdf: Fix build.
* gnu/packages/tex.scm (texlive-autopdf)[native-inputs]: Add TEXLIVE-ETOOLBOX,
TEXLIVE-CM-SUPER.
Change-Id: I7de8e56d5fd8001b5e5e8f45972726d646da7f65
-rw-r--r-- | gnu/packages/tex.scm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index bc9c3a4104..aebbac5668 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92393,7 +92393,11 @@ equations that are referenced. This operation is similar to the (build-system texlive-build-system) (arguments (list #:tex-format "pdflatex")) (native-inputs - (list (texlive-updmap.cfg (list texlive-catchfile texlive-hypdoc)))) + (list (texlive-updmap.cfg + (list texlive-catchfile + texlive-cm-super + texlive-etoolbox + texlive-hypdoc)))) (home-page "https://ctan.org/pkg/autopdf") (synopsis "Conversion of graphics to pdfLaTeX-compatible formats") (description |