From 1e9e583795e18f7c996ca914c13187899b5b1f9d Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:38 +0200 Subject: [PATCH] gnu: Add texlive-beamerthemeamurmaple. * gnu/packages/tex.scm (texlive-beamerthemeamurmaple): New variable. --- gnu/packages/tex.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index aadb1d6199..ba6a5a79d0 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -74140,6 +74140,25 @@ (define-public texlive-beamertheme-upenn-bc presentation theme Warsaw.") (license license:lppl))) +(define-public texlive-beamerthemeamurmaple + (package + (name "texlive-beamerthemeamurmaple") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/beamerthemeamurmaple/" + "tex/latex/beamerthemeamurmaple/") + (base32 + "1mjw8nx23fvmjf87p54dpfcfjlhcham3hwh3b2r3dll68af3grbg"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/beamerthemeamurmaple") + (synopsis "Modern Beamer theme") + (description + "This Beamer theme is a suitable theme for presentations in applied +mathematics research.") + (license license:lppl1.3+))) + ;;; ;;; 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