From cb12916df41752efa4fdb04b653df06a6a7c1cd5 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:58:30 +0200 Subject: [PATCH] gnu: Add texlive-piff. * gnu/packages/tex.scm (texlive-piff): 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 a04dba7663..cbdc978bcb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -92445,6 +92445,26 @@ syntax of these arguments, so that dimensions with calculation support may be used for these arguments.") (license license:lppl1.3+))) +(define-public texlive-piff + (package + (name "texlive-piff") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/piff/" "tex/latex/piff/") + (base32 + "1y61wv1msddh4d1cybdq4dxcaibbc2rx9yhv1c0kjavzyvdmjyxx"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/piff") + (synopsis "Macro tools by Mike Piff") + (description + "This collection of tools consists of: a small package for dealing with +duplicate-numbered output pages; @code{newproof}, for defining mathematical +proof structures; @code{onepagem} for omitting the page number in one-page +documents and @code{time}, which prints a 12-hour format time.") + (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