ngz pushed a commit to branch tex-team-next in repository guix. commit 5aeede5ee086414c056d57ca5e9f4774e8694624 Author: Nicolas Goaziou <m...@nicolasgoaziou.fr> AuthorDate: Mon May 15 12:29:55 2023 +0200
gnu: Add texlive-kantlipsum. * gnu/packages/tex.scm (texlive-kantlipsum): New variable. --- gnu/packages/tex.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index f652b5827b..f3133d1094 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -7056,6 +7056,31 @@ and a BibTeX bibliography style. The individual packages are: @code{abbrevs}, (define-deprecated-package texlive-latex-frankenstein texlive-frankenstein) +(define-public texlive-kantlipsum + (package + (name "texlive-kantlipsum") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/kantlipsum/" + "source/latex/kantlipsum/" + "tex/latex/kantlipsum/") + (base32 + "1bz08i8b7ihzd2qi4v9r9kjl2kr5a3l516lqb36spxyyrlmmwv4p"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-l3kernel + texlive-l3packages)) + (home-page "https://ctan.org/pkg/kantlipsum") + (synopsis "Generate sentences in Kant's style") + (description + "The package spits out sentences in Kantian style; the text is provided +by the Kant generator for Python by Mark Pilgrim, described in the book ``Dive +into Python''. The package is modelled on @code{lipsum}, and may be used for +similar purposes.") + (license license:lppl1.3c))) + (define-public texlive-lipsum (package (name "texlive-lipsum")