From 95f33c2b8d6c85600d5e8a017639bac9c82e8226 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Tue, 29 Aug 2023 15:51:15 +0200 Subject: [PATCH] gnu: Add texlive-getfiledate. * gnu/packages/tex.scm (texlive-getfiledate): New variable. --- gnu/packages/tex.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 614f02566a..548c2d5a8d 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -83407,6 +83407,26 @@ Note that the package has been designed to work in conjunction with @file{units.sty}.") (license license:lppl1.3+))) +(define-public texlive-getfiledate + (package + (name "texlive-getfiledate") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/getfiledate/" + "tex/latex/getfiledate/") + (base32 + "0m1fz3g2xxwballmka3qvc58wkgzbn9srvn3w4ij79pnffk89l6r"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/getfiledate") + (synopsis "Find the date of last modification of a file") + (description + "The package fetches from the system the date of last modification or opening +of an existing file, using the function @code{\\pdffilemoddate}; the user may +specify how the date is to be presented.") + (license license:lppl))) + ;;; ;;; 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