diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-15 16:54:19 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:18:22 +0200 |
commit | c24e6ae84c6cd1a4cf7b4b47695277af40fa9d11 (patch) | |
tree | 0188c62988450ed4b19f6ef72aab568e3917681b | |
parent | cad37ff3b3031f0d758b656d8e448e1adc0f591d (diff) | |
download | guix-c24e6ae84c6cd1a4cf7b4b47695277af40fa9d11.tar.gz guix-c24e6ae84c6cd1a4cf7b4b47695277af40fa9d11.zip |
gnu: Add texlive-babel-spanish.
* gnu/packages/tex.scm (texlive-babel-spanish): 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 e0ef0efd7d..6933a37d80 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -9047,6 +9047,27 @@ Portuguese and Brazilian Portuguese in Babel. Some shortcuts are defined, as well as translations to Portuguese of standard LaTeX names.") (license license:lppl1.3+))) +(define-public texlive-babel-spanish + (package + (name "texlive-babel-spanish") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/generic/babel-spanish/" + "source/generic/babel-spanish/" + "tex/generic/babel-spanish/") + (base32 + "0nzc4hs91a901cjy2vhpamdw3gyxp7k2lmag9ni8zmy180zncm5g"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/babel-spanish") + (synopsis "Babel support for Spanish") + (description + "This bundle provides the means to typeset Spanish text, with the support +provided by the LaTeX standard package Babel. Note that separate support is +provided for those who wish to typeset Spanish as written in Mexico.") + (license license:lppl1.3+))) + (define-public texlive-babel-swedish (package (name "texlive-babel-swedish") |