summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Farges <olivier.farges@univ-lorraine.fr>2026-05-15 11:23:03 +0200
committerAndreas Enge <andreas@enge.fr>2026-08-28 17:21:24 +0200
commit34c567f42beeab81555541717f061d3ff5253ba2 (patch)
tree70dbca9ff0d335cd2b06cdd6cfd3d48107273cb3
parentb233a2cdf5b5c07c22c38cfdbab6036484f8ebd7 (diff)
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 <mail@nicolasgoaziou.fr>
-rw-r--r--gnu/packages/maths.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 0f320675580..b0ee16ea09b 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -1727,7 +1727,7 @@ in the terminal or with an external viewer.")
1727 (list #:configure-flags 1727 (list #:configure-flags
1728 #~(list "--with-qt=no" 1728 #~(list "--with-qt=no"
1729 (string-append "--with-texdir=" #$output 1729 (string-append "--with-texdir=" #$output
1730 "/texmf-local/tex/latex/gnuplot")) 1730 "/share/texmf-dist/tex/latex/gnuplot"))
1731 ;; Plot on a dumb terminal during tests. 1731 ;; Plot on a dumb terminal during tests.
1732 #:make-flags #~'("GNUTERM=dumb"))) 1732 #:make-flags #~'("GNUTERM=dumb")))
1733 (home-page "http://www.gnuplot.info") 1733 (home-page "http://www.gnuplot.info")