diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:30:29 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:40:08 +0200 |
commit | 8fd9d02b6bc263d68d88afef6ca51b3e8433434c (patch) | |
tree | 2d2cb4f065db6d6e408183097385f87e3f07335c | |
parent | 38779ca5f3574b5e38f63d4c934a69bd9b6c5c2b (diff) |
gnu: Add texlive-collection-langportuguese.
* gnu/packages/tex.scm (texlive-collection-langportuguese): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index e588905b6a..c308015494 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -34391,6 +34391,31 @@ simply on the size of the support.") (description "This collection provides support packages for Polish.") (license (license:fsf-free "https://www.tug.org/texlive/copying.html")))) +(define-public texlive-collection-langportuguese + (package + (name "texlive-collection-langportuguese") + (version (number->string %texlive-revision)) + (source #f) + (build-system trivial-build-system) + (arguments (list #:builder #~(mkdir #$output))) + (propagated-inputs + (list texlive-babel-portuges + texlive-beamer-tut-pt + texlive-collection-basic + texlive-cursolatex + texlive-feupphdteses + texlive-hyphen-complete + texlive-latex-via-exemplos + texlive-latexcheat-ptbr + texlive-lshort-portuguese + texlive-numberpt + texlive-ordinalpt + texlive-xypic-tut-pt)) + (home-page "https://www.tug.org/texlive/") + (synopsis "Support for Portuguese") + (description "This collection provides support packages for Portuguese.") + (license (license:fsf-free "https://www.tug.org/texlive/copying.html")))) + (define-public texlive-collection-latex (package (name "texlive-collection-latex") |