From d5b92e5194b32e73cb2ce5661876301ff59a3539 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:45:12 +0200 Subject: [PATCH] gnu: Add texlive-bxdpx-beamer. * gnu/packages/tex.scm (texlive-bxdpx-beamer): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 477b917d9d..35df69e85b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -74935,6 +74935,27 @@ In addition, this bundle provides the @code{bxcalc} package, which simply loads the above-mentioned packages internally.") (license license:expat))) +(define-public texlive-bxdpx-beamer + (package + (name "texlive-bxdpx-beamer") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/bxdpx-beamer/" + "tex/latex/bxdpx-beamer/") + (base32 + "067s7qvz5hzq6kvwkc00na0myhgwws111mhx8xsgkpcl5a2ja7cz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/bxdpx-beamer") + (synopsis "Dvipdfmx extras for use with Beamer") + (description + "The package is a driver to support Beamer navigation symbols and +@code{\\framezoomed} regions when using @command{dvipdfmx} as PDF +generator (e.g., as part of e-pTeX). The package does not define any user +commands.") + (license license:expat))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar