diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-07-13 12:53:22 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-07-24 09:46:43 +0200 |
commit | cbc7e10999ec152e9c21425c3da79034c246445d (patch) | |
tree | 6954b403819966c75c418c53184c1ddde05cdd05 /gnu/packages/tex.scm | |
parent | 7ffc31058cde07b28cd5676f7e2016b480ef0ad5 (diff) | |
download | guix-cbc7e10999ec152e9c21425c3da79034c246445d.tar guix-cbc7e10999ec152e9c21425c3da79034c246445d.tar.gz |
gnu: Add texlive-hyphen-catalan.
* gnu/packages/tex.scm (texlive-hyphen-catalan): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index eaf201241a..c323ce657b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1506,6 +1506,18 @@ language in T2A and UTF-8 encodings.") "file:///tex/generic/hyph-utf8/patterns/tex/hyph-bg.tex" "Ancestral BSD variant")))) +(define-public texlive-hyphen-catalan + (package + (inherit (texlive-hyphen-package + "texlive-hyphen-catalan" "ca" + (list "/tex/generic/hyph-utf8/patterns/tex/hyph-ca.tex") + (base32 + "0cisx76jpw8kpd3an37m9h8ppiysnizgfzl48y9d9n3fvx8jyykb"))) + (synopsis "Hyphenation patterns for Catalan") + (description "The package provides hyphenation patterns for Catalan in +T1/EC and UTF-8 encodings.") + (license license:lppl1.0+))) + (define-public texlive-hyph-utf8 (package |