diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 18:00:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:25 +0200 |
commit | 1844205332f41d015bfa8e93622e8bb8b947f268 (patch) | |
tree | 79a4917e57a2e5af590f1f2f4f56dc6e74d6d8e3 | |
parent | 82ec75c4d910dde41b609e55cd10c2ff80a68f70 (diff) | |
download | guix-1844205332f41d015bfa8e93622e8bb8b947f268.tar.gz |
gnu: Add texlive-babel-irish.
* gnu/packages/tex.scm (texlive-babel-irish): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 6f13a049ca..9a71663034 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -20384,6 +20384,27 @@ Icelandic in Babel. Some shortcuts are defined, as well as translations to Icelandic of standard LaTeX names.") (license license:lppl1.3+))) +(define-public texlive-babel-irish + (package + (name "texlive-babel-irish") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/babel-irish/" + "source/generic/babel-irish/" + "tex/generic/babel-irish/") + (base32 + "0j78inzjbv653gla11g3rzmn0b5fvzbkmppmhbgq9qi8102p7k55"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/babel-irish") + (synopsis "Babel support for Irish") + (description + "The package provides the language definition file for support of Irish +Gaelic in Babel. The principal content is translations to Irish of standard +LaTeX names.") + (license license:lppl1.3+))) + (define-public texlive-babel-italian (package (name "texlive-babel-italian") |