[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
181/418: gnu: texlive-tcolorbox: Refresh package definition.
From: |
guix-commits |
Subject: |
181/418: gnu: texlive-tcolorbox: Refresh package definition. |
Date: |
Mon, 29 May 2023 17:39:11 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 026680333e9d6566bcbac0e9f3853be707bfe7f1
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 13:35:43 2023 +0200
gnu: texlive-tcolorbox: Refresh package definition.
* gnu/packages/tex.scm (texlive-tcolorbox): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[propagated-inputs]: Add TEXLIVE-AMSMATH, TEXLIVE-ENVIRON, TEXLIVE-ETOOLBOX,
TEXLIVE-HYPERREF, TEXLIVE-INCGRAPH, TEXLIVE-IFTEX, TEXLIVE-L3PACKAGES,
TEXLIVE-MARVOSYM, TEXLIVE-MINTED, TEXLIVE-OBERDIEK, TEXLIVE-PDFTEXCMDS,
TEXLIVE-PSNFSS, TEXLIVE-PGF, TEXLIVE-REFCOUNT, TEXLIVE-TOOLS.
---
gnu/packages/tex.scm | 59 +++++++++++++++++++++++++++++++++-------------------
1 file changed, 38 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 717e6c4360..9a195f832a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11658,27 +11658,44 @@ levels. All functionality is provided by the single
@code{\\qrcode} command.")
(license license:lppl1.3c+)))
(define-public texlive-tcolorbox
- (let ((template (simple-texlive-package
- "texlive-tcolorbox"
- (list "/doc/latex/tcolorbox/"
- "/tex/latex/tcolorbox/")
- (base32
- "1qnsbblkadzdn1fx2k21xnlwcb35pg9xya24chkm66jmidi22qp0")
- #:trivial? #true)))
- (package
- (inherit template)
- (propagated-inputs
- (list texlive-etoolbox texlive-environ texlive-pgf texlive-tools))
- (home-page "https://www.ctan.org/pkg/tcolorbox")
- (synopsis "Colored boxes, for LaTeX examples and theorems, etc")
- (description "This package provides an environment for colored and
-framed text boxes with a heading line. Optionally, such a box may be split in
-an upper and a lower part; thus the package may be used for the setting of
-LaTeX examples where one part of the box displays the source code and the
-other part shows the output. Another common use case is the setting of
-theorems. The package supports saving and reuse of source code and text
-parts.")
- (license license:lppl1.3c+))))
+ (package
+ (name "texlive-tcolorbox")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/tcolorbox/" "tex/latex/tcolorbox/")
+ (base32
+ "1qnsbblkadzdn1fx2k21xnlwcb35pg9xya24chkm66jmidi22qp0")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-amsmath
+ texlive-environ
+ texlive-etoolbox
+ texlive-hyperref
+ texlive-incgraph
+ texlive-iftex
+ texlive-l3packages
+ texlive-listings
+ texlive-listingsutf8
+ texlive-marvosym
+ texlive-minted
+ texlive-oberdiek ;for pdfcol
+ texlive-pdftexcmds
+ texlive-pgf
+ texlive-psnfss
+ texlive-refcount
+ texlive-tools))
+ (home-page "https://ctan.org/pkg/tcolorbox")
+ (synopsis "Coloured boxes, for LaTeX examples and theorems, etc")
+ (description
+ "This package provides an environment for coloured and framed text boxes
+with a heading line. Optionally, such a box may be split in an upper and
+a lower part; thus the package may be used for the setting of LaTeX examples
+where one part of the box displays the source code and the other part shows
+the output. Another common use case is the setting of theorems. The package
+supports saving and reuse of source code and text parts.")
+ (license license:lppl1.3c+)))
(define-public texlive-ebproof
(package
- 267/418: gnu: texlive-pdfescape: Refresh package definition., (continued)
- 267/418: gnu: texlive-pdfescape: Refresh package definition., guix-commits, 2023/05/29
- 266/418: gnu: texlive-ltxcmds: Refresh package definition., guix-commits, 2023/05/29
- 273/418: gnu: texlive-unicode-data: Refresh package definition., guix-commits, 2023/05/29
- 280/418: gnu: texlive-graphics: Refresh package definition., guix-commits, 2023/05/29
- 284/418: gnu: texlive-hyperref: Refresh package definition., guix-commits, 2023/05/29
- 293/418: gnu: texlive-endnotes: Refresh package definition., guix-commits, 2023/05/29
- 76/418: gnu: texlive-latex-fancybox -> texlive-fancybox., guix-commits, 2023/05/29
- 111/418: gnu: texlive-latex-ebproof -> texlive-ebproof., guix-commits, 2023/05/29
- 112/418: gnu: texlive-latex-bussproofs -> texlive-bussproofs., guix-commits, 2023/05/29
- 113/418: gnu: texlive-latex-textpos -> texlive-textpos., guix-commits, 2023/05/29
- 181/418: gnu: texlive-tcolorbox: Refresh package definition.,
guix-commits <=
- 187/418: gnu: texlive-mweights: Refresh package definition., guix-commits, 2023/05/29
- 192/418: gnu: texlive-arev: Refresh package definition., guix-commits, 2023/05/29
- 196/418: gnu: texlive-symbol: Refresh package definition., guix-commits, 2023/05/29
- 197/418: gnu: texlive-caption: Refresh package definition., guix-commits, 2023/05/29
- 199/418: gnu: texlive-microtype: Refresh package definition., guix-commits, 2023/05/29
- 202/418: gnu: texlive-biblatex-apa: Refresh package definition., guix-commits, 2023/05/29
- 205/418: gnu: texlive-csquotes: Refresh package definition., guix-commits, 2023/05/29
- 231/418: gnu: texlive-babel-french: Refresh package definition., guix-commits, 2023/05/29
- 227/418: gnu: texlive-pict2e: Refresh package definition., guix-commits, 2023/05/29
- 219/418: gnu: texlive-titlesec: Refresh package definition., guix-commits, 2023/05/29