diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:07:13 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:09 +0200 |
commit | 356df215e64aa110dd1a96eec496c74f09e122e2 (patch) | |
tree | 194477e39acc1981e91c6e8418e02fb21efb718d /gnu/packages | |
parent | 5075041c97b5adec36a10c26eff6b8f771b8d675 (diff) | |
download | guix-356df215e64aa110dd1a96eec496c74f09e122e2.tar guix-356df215e64aa110dd1a96eec496c74f09e122e2.tar.gz |
gnu: Add texlive-latex-mr.
* gnu/packages/tex.scm (texlive-latex-mr): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 5d79fdeaec..1e3b7cbc35 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16505,6 +16505,29 @@ can interact with LaTeX.mk so that the latter automatically invokes @end itemize") (license license:gpl3+))) +(define-public texlive-latex-mr + (package + (name "texlive-latex-mr") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/latex-mr/") + (base32 + "1zd948d9y63js7980g2bvxpf67hshh2xa3n2ihbzwhpw6l9cbh1w"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/latex-mr") + (synopsis + "Practical guide to LaTeX and Polyglossia for Marathi and other Indian +languages") + (description + "This document aims to introduce LaTeX and Polyglossia for Indian languages. +Though the document often discusses the language Marathi, the discussion +applies to other India languages also. We assume that the user of this +document knows basic (La)TeX or has, at least, tried her hand on it. This +document is not very suitable for first time users.") + (license license:lppl1.3+))) + (define-public texlive-liftarm (package (name "texlive-liftarm") |