diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:13:33 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 11:33:16 +0200 |
commit | 983bc8c5fb1979049d68bae4c7b42b841f396bb3 (patch) | |
tree | 03ee4e7e8cce982f147c1a3e2ee625ba76082714 /gnu/packages | |
parent | d90ea2f1c9e87c7c67102cf7e9b29f87e23e13c6 (diff) | |
download | guix-983bc8c5fb1979049d68bae4c7b42b841f396bb3.tar.gz guix-983bc8c5fb1979049d68bae4c7b42b841f396bb3.zip |
gnu: Add texlive-wnri-latex.
* gnu/packages/tex.scm (texlive-wnri-latex): 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 65157b5357..c6273e4697 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -10347,6 +10347,25 @@ languages in Roman transliteration and Puget Salish (Lushootseed) and other Native American languages.") (license license:gpl3+))) +(define-public texlive-wnri-latex + (package + (name "texlive-wnri-latex") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/wnri-latex/" + "source/latex/wnri-latex/" + "tex/latex/wnri-latex/") + (base32 + "08ld2nys36vb368977dpwav75ffra2p8999dx4dwrs4vg6k2r2l7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/wnri-latex") + (synopsis "LaTeX support for @code{wnri} fonts") + (description + "This package provides LaTeX support for the @code{wnri} fonts.") + (license license:gpl2))) + (define-public texlive-xecyrmongolian (package (name "texlive-xecyrmongolian") |