me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-gnuplottex.

* gnu/packages/tex.scm (texlive-gnuplottex): New variable.
Nicolas Goaziou 2023-07-13 00:31:28 +02:00
parent 51443f69e4
commit 9047244091
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 0 deletions

View File

@ -17323,6 +17323,31 @@ script (LaTeX must be running with @samp{\\write 18} enabled). The Lua script
may be used from the command line; a Bash version is provided.")
(license license:lppl)))
(define-public texlive-gnuplottex
(package
(name "texlive-gnuplottex")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/gnuplottex/"
"source/latex/gnuplottex/"
"tex/latex/gnuplottex/")
(base32
"1c99xc24bqp0j1xy31ayna4xmdsyshs9fjarb8cmn4m3ffwvlrmw")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/gnuplottex")
(synopsis "Embed Gnuplot commands in LaTeX documents")
(description
"This package allows you to include Gnuplot graphs in your LaTeX
documents. The Gnuplot code is extracted from the document and written to
@file{.gnuplot} files. Then, if shell escape is used, the graph files are
automatically processed to graphics or LaTeX code files which will then be
included in the document. If shell escape isn't used, the user will have to
manually convert the files by running Gnuplot on the extracted @file{.gnuplot}
files.")
(license license:gpl2)))
(define-public texlive-inlinedef
(package
(name "texlive-inlinedef")