diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 00:06:32 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-11 14:39:55 +0200 |
commit | b59e75bf27dbf568f7b0f93a3d11bf5edad40488 (patch) | |
tree | c4d1414a9bd95c8e049b0c975ad1a1c9b171a69d /gnu/packages/tex.scm | |
parent | 310b862a3d1cb3a239d6e70cee83945b916a265d (diff) | |
download | guix-b59e75bf27dbf568f7b0f93a3d11bf5edad40488.tar.gz |
gnu: Add texlive-uhrzeit.
* gnu/packages/tex.scm (texlive-uhrzeit): New variable.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index afd4f9a552..20903ac3bc 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -36888,6 +36888,25 @@ a template for such theses.) The class is designed for use with pdfLaTeX; input in UTF-8 encoding is assumed.") (license license:lppl1.3+))) +(define-public texlive-uhrzeit + (package + (name "texlive-uhrzeit") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/uhrzeit/" "tex/latex/uhrzeit/") + (base32 + "18qms6ych9q8bras2ajkl4z3dmnrp07gpzizywz206c3i1any3rc"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/uhrzeit") + (synopsis "Time printing, in German") + (description + "The primary goal of this package is to facilitate formats and ranges of +times as formerly used in Germany. A variety of printing formats are +available.") + (license license:lppl1.3+))) + (define-public texlive-unicode-math (package (name "texlive-unicode-math") |