guix_mirror_bot pushed a commit to branch tex-team
in repository guix.
commit 4ebe5d1ed5943cf6112dd2750b05d23d21aa0095
Author: Olivier Farges <[email protected]>
AuthorDate: Fri May 15 11:23:03 2026 +0200
gnu: gnuplot: fix texdir installation path for lua tikz terminal.
* gnu/packages/gnuplot.scm (gnuplot)[arguments]: Install lua tikz
files under share/texmf-dist/tex/latex/gnuplot instead of
texmf-local/tex/latex/gnuplot, so that texlive-libkpathsea can
locate gnuplot-lua-tikz.sty and gnuplot.lua via GUIX_TEXMF.
Merges: #8635
Change-Id: Id60e1937160fbdc5d20431c9b6432a9a7da49762
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/maths.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index c27b60ddf29..b672e251dda 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1727,7 +1727,7 @@ in the terminal or with an external viewer.")
(list #:configure-flags
#~(list "--with-qt=no"
(string-append "--with-texdir=" #$output
- "/texmf-local/tex/latex/gnuplot"))
+ "/share/texmf-dist/tex/latex/gnuplot"))
;; Plot on a dumb terminal during tests.
#:make-flags #~'("GNUTERM=dumb")))
(home-page "http://www.gnuplot.info")