diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-29 16:00:09 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-31 22:05:47 +0200 |
commit | ebd12c23800463caea42ba55bc42b45515ebd68e (patch) | |
tree | 4dc9090261ee6446cae9feb502ebfa099709cc54 | |
parent | 4ed2d3c64fb9c4a19eca5dcacdbf90dbe175e249 (diff) | |
download | guix-ebd12c23800463caea42ba55bc42b45515ebd68e.tar.gz |
gnu: Add texlive-runcode.
* gnu/packages/tex.scm (texlive-runcode): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 51be16d77f..181ecd7b05 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -94391,6 +94391,30 @@ designating the relative scale in printed materials.") and compass diagrams with TikZ.") (license license:lppl1.3+))) +(define-public texlive-runcode + (package + (name "texlive-runcode") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/runcode/" "tex/latex/runcode/") + (base32 + "0hl179kc1snbld8ggp2jsx7rb5kyi9xjw2xbvzlf0bjxib8c2id7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/runcode") + (synopsis + "Execute foreign source code and embed the result in the PDF file") + (description + "This LaTeX package executes programming source codes (including all command +line tools) from within LaTeX and embeds the output in the resulting +@file{.pdf} file. Many programming languages can be easily used and any +command-line executable can be invoked when preparing the @file{.pdf} file +from a @file{.tex} file. It is however recommended to use this package in +server-mode together with the Python @command{talk2stat} package. Currently, +this server-mode supports Julia, MatLab, Python, and R.") + (license license:lppl1.3c))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar |