ngz pushed a commit to branch tex-team-next
in repository guix.
commit bc15232eae3b11d5f411ea9da8f122754b997fb5
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Mon May 15 00:57:07 2023 +0200
gnu: texlive-pdflscape: Refresh package definition.
* gnu/packages/tex.scm (texlive-pdflscape): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-ATBEGSHI, TEXLIVE-GRAPHICS, and
TEXLIVE-IFTEX.
---
gnu/packages/tex.scm | 23 +++++++++++++++--------
1 file changed, 15 insertions(+), 8 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2c8da92cc0..834cbc645e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -12359,14 +12359,21 @@ Several keys customize the appearance of the chart
elements.")
(define-public texlive-pdflscape
(package
- (inherit
- (simple-texlive-package
- "texlive-pdflscape"
- (list "doc/latex/pdflscape/"
- "source/latex/pdflscape/"
- "tex/latex/pdflscape/")
- (base32 "05vvmwd8vlzs2x2rm6pfzlvrrihqf924d7krlrkvc6giiwyfsic4")
- #:trivial? #t))
+ (name "texlive-pdflscape")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/pdflscape/"
+ "source/latex/pdflscape/"
+ "tex/latex/pdflscape/")
+ (base32
+ "05vvmwd8vlzs2x2rm6pfzlvrrihqf924d7krlrkvc6giiwyfsic4")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-atbegshi
+ texlive-graphics
+ texlive-iftex))
(home-page "https://ctan.org/pkg/pdflscape")
(synopsis "Make landscape pages display as landscape")
(description