guix_mirror_bot pushed a commit to branch tex-team
in repository guix.
commit 34c567f42beeab81555541717f061d3ff5253ba2
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 0f32067558..b0ee16ea09 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")