ngz pushed a commit to branch tex-team-next
in repository guix.
commit b56ccdb90a4a8aebe0d0f6f521cc0211b77402d7
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon May 15 13:22:25 2023 +0200
gnu: texlive-xifthen: Refresh package definition.
* gnu/packages/tex.scm (texlive-xifthen): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-IFMTARG, TEXLIVE-TOOLS.
---
gnu/packages/tex.scm | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 54456bddca..4c38cba9ab 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11877,14 +11877,18 @@ by the following fonts:
(define-public texlive-xifthen
(package
- (inherit (simple-texlive-package
- "texlive-xifthen"
- (list "doc/latex/xifthen/"
- "tex/latex/xifthen/")
- (base32
- "0b33mlmnxsj5mi06v2w2zgamk51mgv1lxdr1cax8nkpn9g7n9axw")
- #:trivial? #t))
+ (name "texlive-xifthen")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/xifthen/" "tex/latex/xifthen/")
+ (base32
+ "0b33mlmnxsj5mi06v2w2zgamk51mgv1lxdr1cax8nkpn9g7n9axw")))
+ (outputs '("out" "doc"))
(build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-ifmtarg
+ texlive-tools))
(home-page "https://ctan.org/pkg/xifthen")
(synopsis "Extended conditional commands")
(description