* [bug#61659] [PATCH 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs.
[not found] <20230220173626.5988-1-Morgan.J.Smith@outlook.com>
@ 2023-02-20 17:36 ` Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 3/6] gnu: texlive-mdframed: " Morgan.J.Smith
` (3 subsequent siblings)
4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 17:36 UTC (permalink / raw)
To: 61659; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/tex.scm (texlive-latex-ifplatform)[propagated-inputs]: Add
texlive-catchfile.
---
gnu/packages/tex.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 96c07de51b..1e6d040106 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4957,6 +4957,7 @@ (define-public texlive-latex-ifplatform
(base32
"157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
(build-system texlive-build-system)
+ (propagated-inputs (list texlive-catchfile))
(arguments '(#:tex-directory "latex/ifplatform"))
(home-page "https://www.ctan.org/pkg/ifplatform")
(synopsis "Conditionals to test which platform is being used")
--
2.39.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#61659] [PATCH 3/6] gnu: texlive-mdframed: Add needed propagated-inputs.
[not found] <20230220173626.5988-1-Morgan.J.Smith@outlook.com>
2023-02-20 17:36 ` [bug#61659] [PATCH 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs Morgan.J.Smith
@ 2023-02-20 17:36 ` Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 4/6] gnu: texlive-latex-fancyvrb: " Morgan.J.Smith
` (2 subsequent siblings)
4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 17:36 UTC (permalink / raw)
To: 61659; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/tex.scm (texlive-mdframed)[propagated-inputs]: Add
texlive-latex-needspace, and texlive-zref.
---
gnu/packages/tex.scm | 2 ++
1 file changed, 2 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1e6d040106..6d961558e9 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11515,6 +11515,8 @@ (define-public texlive-mdframed
"tex/latex/mdframed/")
(base32 "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8")
#:trivial? #t))
+ (propagated-inputs (list texlive-latex-needspace
+ texlive-zref))
(home-page "https://ctan.org/pkg/mdframed")
(synopsis "Framed environments that can split at page boundaries")
(description
--
2.39.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#61659] [PATCH 4/6] gnu: texlive-latex-fancyvrb: Add needed propagated-inputs.
[not found] <20230220173626.5988-1-Morgan.J.Smith@outlook.com>
2023-02-20 17:36 ` [bug#61659] [PATCH 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 3/6] gnu: texlive-mdframed: " Morgan.J.Smith
@ 2023-02-20 17:36 ` Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 5/6] gnu: Add texlive-fvextra Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 6/6] gnu: Add texlive-minted Morgan.J.Smith
4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 17:36 UTC (permalink / raw)
To: 61659; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/tex.scm (texlive-latex-fancyvrb)[propagated-inputs]: Add
texlive-latex-upquote.
---
gnu/packages/tex.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6d961558e9..3d0d2e5db9 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3174,6 +3174,7 @@ (define-public texlive-latex-fancyvrb
(base32
"0pdilgpw4zc0ipp4z9kdi61nymifyjy2mfpk74xk2cw9vhynkk3w")
#:trivial? #t))
+ (propagated-inputs (list texlive-latex-upquote))
(home-page "https://www.ctan.org/pkg/fancyvrb")
(synopsis "Sophisticated verbatim text")
(description
--
2.39.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#61659] [PATCH 5/6] gnu: Add texlive-fvextra.
[not found] <20230220173626.5988-1-Morgan.J.Smith@outlook.com>
` (2 preceding siblings ...)
2023-02-20 17:36 ` [bug#61659] [PATCH 4/6] gnu: texlive-latex-fancyvrb: " Morgan.J.Smith
@ 2023-02-20 17:36 ` Morgan.J.Smith
2023-02-20 17:36 ` [bug#61659] [PATCH 6/6] gnu: Add texlive-minted Morgan.J.Smith
4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 17:36 UTC (permalink / raw)
To: 61659; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/tex.scm (texlive-fvextra): New variable.
---
gnu/packages/tex.scm | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 3d0d2e5db9..55f6952cc1 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11170,6 +11170,24 @@ (define-public texlive-floatflt
tables and figures to be set left/right or alternating on even/odd pages.")
(license license:lppl1.3+)))
+(define-public texlive-fvextra
+ (package
+ (inherit (simple-texlive-package
+ "texlive-fvextra"
+ (list "/doc/latex/fvextra/"
+ "/source/latex/fvextra/"
+ "/tex/latex/fvextra/")
+ (base32
+ "0nawx1fh55yhqspy5jgss2qmwpqmikfrg7628smk931rph9nq0aa")
+ #:trivial? #t))
+ (home-page "https://ctan.org/macros/latex/contrib/fvextra")
+ (synopsis "Extensions and patches for fancyvrb")
+ (description
+ "Provides several extensions to fancyvrb, including automatic line
+breaking and improved math mode. It also patches some fancyvrb internals.
+Parts of fvextra were originally developed as part of pythontex and minted.")
+ (license license:lppl1.3+)))
+
(define-public bibtool
(package
(name "bibtool")
--
2.39.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [bug#61659] [PATCH 6/6] gnu: Add texlive-minted.
[not found] <20230220173626.5988-1-Morgan.J.Smith@outlook.com>
` (3 preceding siblings ...)
2023-02-20 17:36 ` [bug#61659] [PATCH 5/6] gnu: Add texlive-fvextra Morgan.J.Smith
@ 2023-02-20 17:36 ` Morgan.J.Smith
4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 17:36 UTC (permalink / raw)
To: 61659; +Cc: Morgan Smith
From: Morgan Smith <Morgan.J.Smith@outlook.com>
* gnu/packages/tex.scm (texlive-minted): New variable.
---
gnu/packages/tex.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 55f6952cc1..f63c5567fe 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -10032,6 +10032,33 @@ (define-public texlive-microtype
the bundle.")
(license license:lppl1.3c))))
+(define-public texlive-minted
+ (package
+ (inherit (simple-texlive-package
+ "texlive-minted"
+ (list "/doc/latex/minted/"
+ "/source/latex/minted/"
+ "/tex/latex/minted/")
+ (base32
+ "08pbhp4a9k8v49kji26206zzabp0nn0fz403l4w7gxajw9rj8icr")
+ #:trivial? #t))
+ (propagated-inputs (list python-pygments
+ texlive-etoolbox
+ texlive-fvextra
+ texlive-generic-xstring
+ texlive-latex-fancyvrb
+ texlive-latex-float
+ texlive-latex-framed
+ texlive-latex-ifplatform
+ texlive-latex-newfloat
+ texlive-lineno))
+ (home-page "https://ctan.org/pkg/minted")
+ (synopsis "Highlighted source code for LaTeX")
+ (description "Facilitates expressive syntax highlighting in LaTeX using
+the Pygments library. The package also provides options to customize the
+highlighted source code output using fancyvrb and fvextra.")
+ (license license:lppl1.3+)))
+
(define-public texlive-caption
(let ((template (simple-texlive-package
"texlive-caption"
--
2.39.1
^ permalink raw reply related [flat|nested] 5+ messages in thread