diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 12:29:55 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:20 +0200 |
commit | 6a38ddb178c62c39a6533481114502614691072a (patch) | |
tree | fea58de286e9fd7f0e450ae1c359ffd48d6b1ff0 | |
parent | 349ad09c7cd06e0ee528fff43982c237c27888d0 (diff) | |
download | guix-6a38ddb178c62c39a6533481114502614691072a.tar.gz guix-6a38ddb178c62c39a6533481114502614691072a.zip |
gnu: Add texlive-kantlipsum.
* gnu/packages/tex.scm (texlive-kantlipsum): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 96e567d10d..eade52319f 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") |