ngz pushed a commit to branch tex-team-next
in repository guix.
commit 7b5f74d804c5f6cd6abc416bb73d4d8d21e48750
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon May 15 22:45:10 2023 +0200
gnu: texlive-filemod: Refresh package definition.
* gnu/packages/tex.scm (texlive-filemod): Remove SIMPLE-TEXLIVE-PACKAGE
call.
---
gnu/packages/tex.scm | 20 ++++++++++++--------
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 861c3fb8bd..734ccc13b6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5410,14 +5410,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