From ec0e817048ee4557b461690ce31fc6944fd57304 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 16:01:08 +0200 Subject: [PATCH] gnu: Add texlive-sillypage. * gnu/packages/tex.scm (texlive-sillypage): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index a9bfb253fb..b0cb281dfb 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -95651,6 +95651,27 @@ (define-public texlive-silence later reference.") (license license:lppl))) +(define-public texlive-sillypage + (package + (name "texlive-sillypage") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/sillypage/" + "source/latex/sillypage/" + "tex/latex/sillypage/") + (base32 + "04jnp1hl3k0hs8rgzn1q3q41rmd95wlzv7f1dd9s4affzfk6an1z"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/sillypage") + (synopsis "John Cleese's silly walk as page numbering style") + (description + "This simple LaTeX package provides John Cleese's iconic silly walk routine as +a page numbering style. Other counters, as well as integers, can be typeset +in this silly style, too.") + (license (list license:cc-by-sa4.0 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