From 81eb97ecd3109902f0167dd56bbd0db4fb64ad33 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:47:43 +0200 Subject: [PATCH] gnu: Add texlive-datetime2-latin. * gnu/packages/tex.scm (texlive-datetime2-latin): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 8c308ab7c7..8fc700bdee 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -78462,6 +78462,27 @@ uses a format ``am pm'', the second a format ``24 hours''.") @code{\\DTMsetstyle} provided by @file{datetime2.sty}.") (license license:lppl1.3+))) +(define-public texlive-datetime2-latin + (package + (name "texlive-datetime2-latin") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/datetime2-latin/" + "source/latex/datetime2-latin/" + "tex/latex/datetime2-latin/") + (base32 + "160vqgsrifdhl4v62znbanbmpl3cqq1r8isl9lk4wb9yx31ww3qz"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/datetime2-latin") + (synopsis "Latin language module for the @code{datetime2} package") + (description + "This module provides the @code{latin} style that can be set using +@code{\\DTMsetstyle} provided by @file{datetime2.sty}. This package is +currently unmaintained.") + (license license:lppl1.3+))) + ;;; ;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; of a merge conflict, place them above by existing packages with similar