diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:08:43 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:11 +0200 |
commit | 66f96fec1ee37f2197cba62daa73a6e1ebfe05e8 (patch) | |
tree | 80de42cc39193263f0d64e5359fb883d19b91827 /gnu | |
parent | 46c95bf795137811b38c06b28cf08af70b4b6ff7 (diff) | |
download | guix-66f96fec1ee37f2197cba62daa73a6e1ebfe05e8.tar guix-66f96fec1ee37f2197cba62daa73a6e1ebfe05e8.tar.gz |
gnu: Add texlive-marathi.
* gnu/packages/tex.scm (texlive-marathi): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3f6c817212..b5f1ab454f 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -26300,6 +26300,26 @@ is much more flexible, since it can be used as direct replacement for provided by @code{tex.mp}.") (license license:public-domain))) +(define-public texlive-marathi + (package + (name "texlive-marathi") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/marathi/" "source/latex/marathi/" + "tex/latex/marathi/") + (base32 + "0xlyvdb6dadg4x2xixcxr1ixqsz69ssifpbh5p46lzsz080pwd58"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/marathi") + (synopsis "Typeset Marathi language using XeLaTeX or LuaLaTeX") + (description + "This package is used to typeset Marathi language with LuaLaTeX and XeLaTeX. +It will provide localizations needed for the Marathi language. Currently the +package localizes package @code{blindtext} and package @code{expex}.") + (license (list license:gpl3+ license:fdl1.3+)))) + (define-public texlive-markdown (package (name "texlive-markdown") |