From c0f6a4594f33d8897ba341b7d2d0ff73991c6967 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:44:34 +0200 Subject: [PATCH] gnu: Add texlive-beamertheme-simpledarkblue. * gnu/packages/tex.scm (texlive-beamertheme-simpledarkblue): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 27beaeb8ba..389b8163f4 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -74025,6 +74025,26 @@ be attractive.") colours and fonts. It is suitable for both presentations and posters.") (license license:lppl1.3c))) +(define-public texlive-beamertheme-simpledarkblue + (package + (name "texlive-beamertheme-simpledarkblue") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/beamertheme-simpledarkblue/" + "tex/latex/beamertheme-simpledarkblue/") + (base32 + "0kp3grbjgkgqqx01lca5afn5s30xi7r04ij9436w97gv15jva2ap"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/beamertheme-simpledarkblue") + (synopsis "Template for a simple presentation") + (description + "This is a simple but nice theme for Beamer. Its features are: a simple +structure, with page numbers in footer, no side bar, and simple colors, using +only several foreground and background colors.") + (license license:public-domain))) + ;;; ;;; 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