From e911b9f9a1b89230cb25fde4ddb782c63a8620f2 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Mon, 15 May 2023 12:12:50 +0200 Subject: [PATCH] gnu: texlive-mdframed: Refresh package definition. * gnu/packages/tex.scm (texlive-mdframed): Remove SIMPLE-TEXLIVE-PACKAGE call. [propagated-inputs]: Add TEXLIVE-AMSMATH, TEXLIVE-BOOKTABS, TEXLIVE-CSQUOTES, TEXLIVE-ESO-PIC, TEXLIVE-ETOOLBOX, TEXLIVE-IFTEX, TEXLIVE-GEOMETRY, TEXLIVE-GRAPHICS, TEXLIVE-KANTLIPSUM, TEXLIVE-KVOPTIONS, TEXLIVE-LISTINGS, TEXLIVE-L3KERNEL, TEXLIVE-L3PACKAGES, TEXLIVE-LIPSUM, TEXLIVE-LISTINGS, TEXLIVE-MICROTYPE, TEXLIVE-NTHEOREM, TEXLIVE-OBERDIEK, TEXLIVE-PGF, TEXLIVE-SELINPUT, TEXLIVE-TOOLS, TEXLIVE-XCOLOR. --- gnu/packages/tex.scm | 45 +++++++++++++++++++++++++++++++++----------- 1 file changed, 34 insertions(+), 11 deletions(-) diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 3c9186c19d..612d6f6f20 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12386,17 +12386,40 @@ Polish of standard ``LaTeX names''.") (define-public texlive-mdframed (package - (inherit - (simple-texlive-package - "texlive-mdframed" - (list - "doc/latex/mdframed/" - "source/latex/mdframed/" - "tex/latex/mdframed/") - (base32 "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8") - #:trivial? #t)) - (propagated-inputs (list texlive-needspace - texlive-zref)) + (name "texlive-mdframed") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/mdframed/" "source/latex/mdframed/" + "tex/latex/mdframed/") + (base32 + "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (propagated-inputs + (list texlive-amsmath + texlive-booktabs + texlive-csquotes + texlive-eso-pic + texlive-etoolbox + texlive-iftex + texlive-geometry + texlive-graphics + texlive-kantlipsum + texlive-kvoptions + texlive-l3kernel + texlive-l3packages + texlive-lipsum + texlive-listings + texlive-microtype + texlive-needspace + texlive-ntheorem + texlive-oberdiek + texlive-pgf + texlive-selinput + texlive-tools + texlive-xcolor + texlive-zref)) (home-page "https://ctan.org/pkg/mdframed") (synopsis "Framed environments that can split at page boundaries") (description