diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:26:48 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:40:06 +0200 |
commit | d6944d572f57a1ae481c0e3fb1892007063c4978 (patch) | |
tree | e4773228aba027ef151e6c127cff8d258a0861e6 | |
parent | 51e14cd79787f890d01c0b911d6fd19dc1ec3a7a (diff) |
gnu: Add texlive-beamer-tut-pt.
* gnu/packages/tex.scm (texlive-beamer-tut-pt): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index cbb6a6deae..d7fbcdbe79 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -31642,6 +31642,24 @@ effects, varying slide transitions and animations.") (define-deprecated-package texlive-latex-beamer texlive-beamer) +(define-public texlive-beamer-tut-pt + (package + (name "texlive-beamer-tut-pt") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/beamer-tut-pt/") + (base32 + "0ayh3kbh11l4nyyzp2kcwzn0phqhzawppy044iyl1wwwc2v3zx5b"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/beamer-tut-pt") + (synopsis "Introduction to the @code{beamer} class, in Portuguese") + (description + "This package provides an introduction to the @code{beamer} class, in +Portuguese.") + (license license:gpl3+))) + (define-public texlive-xmpincl (package (name "texlive-xmpincl") |