andreas pushed a commit to branch tex-team
in repository guix.
commit acb99421a3d6e2ab73d82cdc92f22b19c3477758
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Wed Oct 16 20:16:19 2024 +0200
gnu: texlive-kpathsea: Enable all format configurations.
* gnu/packages/tex.scm (texlive-kpathsea)[arguments]<#:phases>: Allow
generating all formats provided in TeX Live.
Change-Id: I8131e1e42b827a1f603af4aa80e4de366bf9492a
---
gnu/packages/tex.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 179209b9e1..9481b23add 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -58112,7 +58112,11 @@ replacement for the @code{inputenc} package.")
"web2c/mktexupd")
(("^version=" m)
(format #false "PATH=\"~{~a:~}$PATH\"; export PATH~%~a"
- dirs m)))))))))
+ dirs m))))))
+ (add-after 'unpack 'enable-all-configurations
+ (lambda _
+ (substitute* "web2c/fmtutil.cnf"
+ (("^#! ") "")))))))
(inputs (list gawk sed))
(propagated-inputs (list texlive-libkpathsea)) ;for the executables
(home-page "https://ctan.org/pkg/kpathsea")