ngz pushed a commit to branch tex-team-next
in repository guix.
commit edfc465d1160445b1acb8035c22f17d4b812bdaa
Author: Nicolas Goaziou <[email protected]>
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 58b6e6c325..6586b54713 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7064,6 +7064,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")