ngz pushed a commit to branch tex-team-next
in repository guix.
commit 4d40a7ab07dfb7ac5711176011a0e3045a089e03
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon May 15 00:27:32 2023 +0200
gnu: texlive-relsize: Refresh package definition.
* gnu/packages/tex.scm (texlive-relsize): Remove SIMPLE-TEXLIVE-PACKAGE
call.
---
gnu/packages/tex.scm | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 835547552e..4558abb28e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -12494,13 +12494,15 @@ to the @code{xr} package for external document
references.")
(define-public texlive-relsize
(package
- (inherit (simple-texlive-package
- "texlive-relsize"
- (list "doc/latex/relsize/"
- "tex/latex/relsize/")
- (base32
- "07g9wqxsh3a9rmfbppaqhyic82a1i1habizaf4hpdi3246w6nnby")
- #:trivial? #t))
+ (name "texlive-relsize")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/relsize/" "tex/latex/relsize/")
+ (base32
+ "07g9wqxsh3a9rmfbppaqhyic82a1i1habizaf4hpdi3246w6nnby")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
(home-page "https://ctan.org/pkg/relsize")
(synopsis "Set the font size relative to the current font size")
(description