diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 15:53:40 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-30 19:41:34 +0200 |
commit | ec2fdef1ca779a2d4502644ca1d256eccdf01c6f (patch) | |
tree | 0e811f29b600311504c81cde19127016bb4a5492 | |
parent | 41b28dc1f418ac1d1e3e67be90d4bddcfe4bafcd (diff) | |
download | guix-ec2fdef1ca779a2d4502644ca1d256eccdf01c6f.tar.gz guix-ec2fdef1ca779a2d4502644ca1d256eccdf01c6f.zip |
gnu: Add texlive-eqexpl.
* gnu/packages/tex.scm (texlive-eqexpl): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8911daa9ae..7b5b9e0015 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3432,6 +3432,24 @@ you use any special symbols inside your command.") @url{https://www.eolang.org, EO} programming language.") (license license:expat))) +(define-public texlive-eqexpl + (package + (name "texlive-eqexpl") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/eqexpl/" "tex/latex/eqexpl/") + (base32 + "0crbq63m7ra20a1s1yka2v24spfvi86ls1v8asswdrf83zkdpibi"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/eqexpl") + (synopsis "Align explanations for formulas") + (description + "This package tries to create perfectly formatted explanation of +components of a formula.") + (license license:cc-by-sa4.0))) + (define-public texlive-bibtex8 (package (name "texlive-bibtex8") |