ngz pushed a commit to branch tex-team-next in repository guix. commit 5eea9cc5e9cc7c505e85273e859e536fdadaaeb8 Author: Nicolas Goaziou <m...@nicolasgoaziou.fr> AuthorDate: Mon May 15 12:41:51 2023 +0200
gnu: texlive-xpatch: Refresh package definition. * gnu/packages/tex.scm (texlive-xpatch): Remove SIMPLE-TEXLIVE-PACKAGE call. [propagated-inputs]: Add TEXLIVE-ETOOLBOX, TEXLIVE-L3KERNEL, TEXLIVE-L3PACKAGES. --- gnu/packages/tex.scm | 31 +++++++++++++++++++------------ 1 file changed, 19 insertions(+), 12 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b69b91394f..d2bf9c2e1a 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12204,18 +12204,25 @@ possible to register these float types with endfloat.") (define-public texlive-xpatch (package - (inherit (simple-texlive-package - "texlive-xpatch" - (list "doc/latex/xpatch/" - "source/latex/xpatch/" - "tex/latex/xpatch/") - (base32 - "0r08hadnwx9vyppzmbn1bj69b12i5fw1mhk49piw2rqbk01722zk") - #:trivial? #t)) - (home-page "https://www.ctan.org/pkg/xpatch") - (synopsis "Extending etoolbox patching commands") - (description "The package generalises the macro patching commands -provided by Philipp Lehmann’s etoolbox.") + (name "texlive-xpatch") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/xpatch/" "source/latex/xpatch/" + "tex/latex/xpatch/") + (base32 + "0r08hadnwx9vyppzmbn1bj69b12i5fw1mhk49piw2rqbk01722zk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-etoolbox + texlive-l3kernel + texlive-l3packages)) + (home-page "https://ctan.org/pkg/xpatch") + (synopsis "Extending @code{etoolbox} patching commands") + (description + "The package generalises the macro patching commands provided by Philipp +Lehmann's @code{etoolbox}.") (license license:lppl1.3c+))) (define-public texlive-threeparttablex