diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:14:11 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:10:46 +0200 |
commit | 10291c62e633c8e8320d3e7f495a715270a28dad (patch) | |
tree | 6edfb8b59de459dfb72745e16e84931c26facbbd /gnu/packages | |
parent | fc6c52c54f6e77f0ef792bb726102190662fbcb6 (diff) | |
download | guix-10291c62e633c8e8320d3e7f495a715270a28dad.tar.gz guix-10291c62e633c8e8320d3e7f495a715270a28dad.zip |
gnu: Add texlive-matc3.
* gnu/packages/tex.scm (texlive-matc3): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 9e07c5f0df..9fb1335c08 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20734,6 +20734,25 @@ the citation key into the margin.") Mathématiques Appliquées et Industrielles (SMAI).") (license license:lppl1.3c))) +(define-public texlive-matc3 + (package + (name "texlive-matc3") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/matc3/" "source/latex/matc3/" + "tex/latex/matc3/") + (base32 + "1rmrkdcda87pjl1lvyvzky0vdhghx0j6z1vdi9fdz2122f2drmpm"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/matc3") + (synopsis "Commands for Matematica C3 textbooks") + (description + "The package provides support for the Matematica C3 project to produce +mathematical textbooks for use in Italian high schools.") + (license license:lppl1.3+))) + (define-public texlive-math-into-latex-4 (package (name "texlive-math-into-latex-4") |