diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 15:00:14 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-14 15:20:58 +0200 |
commit | 316078081eb609f902be13cc1fafefbca2e4bc91 (patch) | |
tree | b624776a60ddd7980f453f17fc49b32564f7959d | |
parent | 49017260f87e6ffc4ce17c2556132cd7ffa9b0c1 (diff) | |
download | guix-316078081eb609f902be13cc1fafefbca2e4bc91.tar.gz |
gnu: Add texlive-babel-serbian.
* gnu/packages/tex.scm (texlive-babel-serbian): 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 084d8b0d81..09820d25ae 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -23333,6 +23333,26 @@ names.") translations of standard LaTeX names.") (license license:lppl1.3+))) +(define-public texlive-babel-serbian + (package + (name "texlive-babel-serbian") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/babel-serbian/" + "source/generic/babel-serbian/" + "tex/generic/babel-serbian/") + (base32 + "089w8phd1pyzh8dmn4v2bspnmx4hqi63mby1yn7xk596qxi3nqrz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/babel-serbian") + (synopsis "Babel and Polyglossia support for Serbian") + (description + "The package provides support for Serbian documents written in Latin, in +Babel.") + (license license:lppl1.3+))) + (define-public texlive-babel-slovak (package (name "texlive-babel-slovak") |