diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 12:11:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-15 12:11:48 +0200 |
commit | a7319a8431a59c7148f054d9d9451c05f8cfcfa0 (patch) | |
tree | ba710fd96a433405de68d482c6b14908ffde858c | |
parent | 3a7b3436b9a5bf275ddc0fd9f889085b8de64231 (diff) | |
download | guix-a7319a8431a59c7148f054d9d9451c05f8cfcfa0.tar.gz guix-a7319a8431a59c7148f054d9d9451c05f8cfcfa0.zip |
gnu: Add texlive-uhc.
* gnu/packages/tex.scm (texlive-uhc): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ef9706182b..6a4611d78b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -43514,6 +43514,33 @@ a template for such theses.) The class is designed for use with pdfLaTeX; input in UTF-8 encoding is assumed.") (license license:lppl1.3+))) +(define-public texlive-uhc + (package + (name "texlive-uhc") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/fonts/uhc/umj/" + "dvips/uhc/" + "fonts/afm/uhc/umj/" + "fonts/map/dvips/uhc/" + "fonts/tfm/uhc/umj/" + "fonts/tfm/uhc/uwmj/" + "fonts/tfm/uhc/wmj/" + "fonts/type1/uhc/umj/" + "fonts/vf/uhc/uwmj/" + "fonts/vf/uhc/wmj/") + (base32 + "1hpqdzmz4xrcgk443lysif8yk52rbra8rh6cjjfr4kibyfpy77p3"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/uhc") + (synopsis "Fonts for the Korean language") + (description + "This package provides support for Korean documents written in Korean +standard KSC codes for LaTeX2e.") + (license license:lppl))) + (define-public texlive-uhrzeit (package (name "texlive-uhrzeit") |