diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 18:57:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-16 19:14:32 +0200 |
commit | ee4e93f7b2df748382179a4041d48c8534c09a62 (patch) | |
tree | 26d51cfa89e6719f378c6019d445de4069b20627 | |
parent | 2a75e7f06e7e007c5ab796ae09e4ea1f609bb07f (diff) |
gnu: Add texlive-kotex-oblivoir.
* gnu/packages/tex.scm (texlive-kotex-oblivoir): New variable.
-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 a98d6717e0..5c25504913 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7093,6 +7093,26 @@ document author needs. So it can be a useful guide for beginners as well as a reference manual for advanced users.") (license license:cc-by-sa4.0))) +(define-public texlive-kotex-oblivoir + (package + (name "texlive-kotex-oblivoir") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/kotex-oblivoir/" + "tex/latex/kotex-oblivoir/") + (base32 + "0hq22jdzcg516zx26mkijpnk5i8gdj30lhjldly8plwmfznhzwwa"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs (list texlive-kotex-utf texlive-memoir)) + (home-page "https://ctan.org/pkg/kotex-oblivoir") + (synopsis "LaTeX document class for typesetting Korean documents") + (description + "The class is based on @code{memoir}, and is adapted to typesetting +Korean documents.") + (license license:lppl1.3c))) + (define-public texlive-kotex-plain (package (name "texlive-kotex-plain") |