From 720251f1d0f38f332bf852890c939c79d904991b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:49 +0200 Subject: [PATCH] gnu: Add texlive-ppt-slides. * gnu/packages/tex.scm (texlive-ppt-slides): New variable. --- gnu/packages/tex.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index d56c5e2068..c1328de11c 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92821,6 +92821,39 @@ (define-public texlive-pagecolor @code{\\restorebackgroundpagecolor} are provided.") (license license:lppl1.3c))) +(define-public texlive-ppt-slides + (package + (name "texlive-ppt-slides") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/ppt-slides/" + "source/latex/ppt-slides/" + "tex/latex/ppt-slides/") + (base32 + "18sig2mk6pb2i86x9jyl2fyac10sg356n1wwvwxzgpbrn62g46y6"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-crumbs + texlive-enumitem + texlive-hyperref + texlive-pagecolor + texlive-pgf + texlive-pgfopts + texlive-qrcode + texlive-seqsplit + texlive-tikzpagenodes + texlive-tools + texlive-varwidth + texlive-xcolor)) + (home-page "https://ctan.org/pkg/ppt-slides") + (synopsis "Slide decks a la PowerPoint (PPT)") + (description + "This LaTeX package helps you create slide decks looking like those created +with PowerPoint, but more precise, uniform, and visually strict.") + (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