diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-04 18:05:00 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:30 +0200 |
commit | 69f53e2ce298626b447b106c770986e159ebae66 (patch) | |
tree | 85277549767917325764320c401ccaddb3ff3bfb /gnu/packages | |
parent | b242b6d113b069729747735ccd58fea39c4eef05 (diff) |
gnu: Add texlive-hulipsum.
* gnu/packages/tex.scm (texlive-hulipsum): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/tex.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 898575a717..151a7965c9 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -4330,6 +4330,30 @@ which are determined by the pronunciation of the subsequent word. The definite article for cross-references and other commands containing text.") (license license:lppl1.3+))) +(define-public texlive-hulipsum + (package + (name "texlive-hulipsum") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/hulipsum/" + "source/latex/hulipsum/" + "tex/latex/hulipsum/") + (base32 + "1w62vawh2l49bgm7ivprmz61b71qsf38xdsrq6x2dc2ywzvs4z2f"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/hulipsum") + (synopsis "Hungarian dummy text (Lorum ipse)") + (description + "Lorem ipsum is an improper Latin filler dummy text, cf.@: the +@code{lipsum} package. It is commonly used for demonstrating the textual +elements of a document template. Lorum ipse is a Hungarian variation of Lorem +ipsum. (Lorum is a Hungarian card game, and ipse is a Hungarian slang word +meaning bloke.) With this package you can typeset 150 paragraphs of Lorum +ipse.") + (license license:lppl1.3+))) + (define-public texlive-ibrackets (package (name "texlive-ibrackets") |