From b49e32e2d73298d75a7d5a36245438b866b268ae Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:13 +0200 Subject: [PATCH] gnu: Add texlive-petiteannonce. * gnu/packages/tex.scm (texlive-petiteannonce): 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 b8ad4a86d7..a1ff6efee3 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92081,6 +92081,26 @@ available.") output, and calculate with them.") (license license:lppl))) +(define-public texlive-petiteannonce + (package + (name "texlive-petiteannonce") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/petiteannonce/" + "tex/latex/petiteannonce/") + (base32 + "0d3ljwsbyv8idym40q1d40md74mlvgpx41ya99y89p2xfm69xffy"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/petiteannonce") + (synopsis "Class for small advertisements") + (description + "The class enables you to create the sort of adverts that you pin on +a noticeboard, with tear-off strips at the bottom where you can place contact +details.") + (license license:lppl))) + ;;; ;;; 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