diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:03:04 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:52 +0200 |
commit | 4abf596489ecad770f2750dc017b4043af3b4873 (patch) | |
tree | 0e0614c82d58de560482921eac505c303c385bc9 | |
parent | 5b182f91ba29e3f34fb35d5fcc27609df8f675b0 (diff) | |
download | guix-4abf596489ecad770f2750dc017b4043af3b4873.tar.gz |
gnu: Add texlive-termcal-de.
* gnu/packages/tex.scm (texlive-termcal-de): New variable.
-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 366d9a164d..75b32af65d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -16068,6 +16068,27 @@ Friedrich-Schiller-Universitat Jena, @end itemize") (license license:lppl))) +(define-public texlive-termcal-de + (package + (name "texlive-termcal-de") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/termcal-de/" + "source/latex/termcal-de/" + "tex/latex/termcal-de/") + (base32 + "0av913y88vfv0yb68xx1lrqpxd8hwx8x7zzb1qcb2d9r5ry1l8z7"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/termcal-de") + (synopsis "German localization for @code{termcal}") + (description + "This package provides a German localization to the @code{termcal} +package written by Bill Mitchell, which is intended to print a term calendar +for use in planning a class.") + (license license:lppl1.3c))) + (define-public texlive-tex4ht (package (name "texlive-tex4ht") |