diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:13:16 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:57 +0200 |
commit | ea46b66846799e23ba245a1a271eb3b1698f7e56 (patch) | |
tree | b6036c1a71f90e7cc28eb5c5ae6d3d9fcfc57efe /gnu/packages | |
parent | 11220e11f7beeba0058a7502d58fc8c6609baa4e (diff) | |
download | guix-ea46b66846799e23ba245a1a271eb3b1698f7e56.tar.gz |
gnu: Add texlive-antanilipsum.
* gnu/packages/tex.scm (texlive-antanilipsum): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 0e6e7e9e96..2885ff7785 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -1618,6 +1618,27 @@ equations and add annotation labels using TikZ. It should work with pdfLaTeX as well as LuaLaTeX.") (license license:expat))) +(define-public texlive-antanilipsum + (package + (name "texlive-antanilipsum") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/antanilipsum/" + "source/latex/antanilipsum/" + "tex/latex/antanilipsum/") + (base32 + "1yighrv3nxb266949m8sqvvl5yp8bhjq478h2abfrs1z0r65gpjr"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/antanilipsum") + (synopsis "Generate sentences in the style of @emph{Amici miei}") + (description + "This package is an italian blind text generator that ouputs supercazzole, +mocking nonsense phrases from the movie series @emph{Amici Miei} (``My +friends'', in English), directed by Mario Monicelli.") + (license license:lppl1.3c))) + (define-public texlive-apnum (package (name "texlive-apnum") |