From e11c5bb4c80f519c9572226566b749874575afc0 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:50 +0200 Subject: [PATCH] gnu: Add texlive-practicalreports. * gnu/packages/tex.scm (texlive-practicalreports): 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 c1328de11c..b76f1d763b 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92854,6 +92854,25 @@ and @code{\\restoregeometry} of the @code{geometry} package @code{\\newpagecolor with PowerPoint, but more precise, uniform, and visually strict.") (license license:expat))) +(define-public texlive-practicalreports + (package + (name "texlive-practicalreports") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/practicalreports/" + "tex/latex/practicalreports/") + (base32 + "0zm7rx8d5vgg2b2dlra44qk77kgivb4pq7glkaligcd1fw8sdzyp"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/practicalreports") + (synopsis "Some macros for writing practical reports") + (description + "This package provides a handful of macros for writing up science practical +reports.") + (license license:lppl1.3c))) + ;;; ;;; 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