diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-22 16:35:49 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-08-24 11:11:05 +0200 |
commit | 78241787d5d004f97540163f0c4d4050eec33198 (patch) | |
tree | 1d35712bba1f78046a9ff42f5c29e1392029a172 /gnu | |
parent | 8819b6adcb3f705cb88051c9dff9e8b62bf38593 (diff) | |
download | guix-78241787d5d004f97540163f0c4d4050eec33198.tar.gz guix-78241787d5d004f97540163f0c4d4050eec33198.zip |
gnu: Add texlive-datetime.
* gnu/packages/tex.scm (texlive-datetime): New variable.
Diffstat (limited to 'gnu')
-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 26e2c13c3d..adc6fd8167 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -68527,6 +68527,30 @@ uses PostScript @code{\\special} commands. The package is now largely superseded by @code{pict2e}.") (license license:lppl))) +(define-public texlive-datetime + (package + (name "texlive-datetime") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/datetime/" + "source/latex/datetime/" + "tex/latex/datetime/") + (base32 + "07rx0bcr8b73669xmvl1q3qy96jfqlfs2yv2khjcaf2yfid3c2vw"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/datetime") + (synopsis "Change format of \\today with commands for current time") + (description + "This package provides various different formats for the text created by +the command @code{\\today}, and also provides commands for displaying the +current time (or any given time), in 12-hour, 24-hour or text format. It +overrides Babel's date format, having its own library of date formats in +different languages. This package is now obsolete and has been replaced by +@code{datetime2}.") + (license license:lppl1.3+))) + (define-public texlive-datetime2 (package (name "texlive-datetime2") |