diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-05-15 22:45:10 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:11:45 +0200 |
commit | 40f910d2fa29749715ec95aeb5f63eba4f02c628 (patch) | |
tree | b7fbb38086e91e5412717c272b2d205dc478c727 | |
parent | 3fdd7b538c569dee59c62a05ff9131d4e274cc62 (diff) |
gnu: texlive-filemod: Refresh package definition.
* gnu/packages/tex.scm (texlive-filemod): Remove SIMPLE-TEXLIVE-PACKAGE
call.
-rw-r--r-- | gnu/packages/tex.scm | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 53f2b27d78..3c994c9e72 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -5402,14 +5402,18 @@ remain in sequence).") (define-public texlive-filemod (package - (inherit (simple-texlive-package - "texlive-filemod" - (list "/doc/latex/filemod/" - "/tex/latex/filemod/" - "/tex/generic/filemod/") - (base32 - "1snsj7kblkj1ig3x3845lsypz7ab04lf0dcpdh946xakgjnz4fb5") - #:trivial? #t)) + (name "texlive-filemod") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/filemod/" "tex/generic/filemod/" + "tex/latex/filemod/") + (base32 + "1snsj7kblkj1ig3x3845lsypz7ab04lf0dcpdh946xakgjnz4fb5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-pdftexcmds)) (home-page "https://www.ctan.org/pkg/filemod") (synopsis "Provide file modification times, and compare them") (description |