diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 15:53:33 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:34 +0200 |
commit | 41b28dc1f418ac1d1e3e67be90d4bddcfe4bafcd (patch) | |
tree | b4cebc2477a0424d50f3c7db05d5583030841fbf /gnu/packages | |
parent | 4f6bf7ea8f5bfc1c0033e1a3c2b295e0504f9d89 (diff) | |
download | guix-41b28dc1f418ac1d1e3e67be90d4bddcfe4bafcd.tar.gz |
gnu: Add texlive-eolang.
* gnu/packages/tex.scm (texlive-eolang): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 2c61094366..8911daa9ae 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3404,6 +3404,34 @@ command and then input its output into your document. This package also lets you use any special symbols inside your command.") (license license:expat))) +(define-public texlive-eolang + (package + (name "texlive-eolang") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/eolang/" "source/latex/eolang/" + "tex/latex/eolang/") + (base32 + "1df7hw4dijisx2r9vzar7xpr97cdhbiyrbawzj8vka9gwwn14kqw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-amsfonts + texlive-amsmath + texlive-fancyvrb + texlive-iexec + texlive-pgf + texlive-pgfopts + texlive-stmaryrd)) + (home-page "https://ctan.org/pkg/eolang") + (synopsis "Formulas and graphs for the EO programming language") + (description + "This LaTeX package helps you write φ-calculus formulas and +@url{https://github.com/objectionary/sodg, SODG} graphs for the +@url{https://www.eolang.org, EO} programming language.") + (license license:expat))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |