gnu: texlive-minted: Refresh package definition.
* gnu/packages/tex.scm (texlive-minted): Remove SIMPLE-TEXLIVE-PACKAGE call. [propagated-inputs]: Add TEXLIVE-GRAPHICS, TEXLIVE-KVOPTIONS, TEXLIVE-PDFTEXCMDS, TEXLIVE-TOOLS.
parent
cf6baca1f4
commit
a06ebba816
|
@ -10947,35 +10947,39 @@ configuration of its own fixed names, using @file{.mld} files.")
|
||||||
(license license:lppl1.3+)))
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
(define-public texlive-minted
|
(define-public texlive-minted
|
||||||
(let ((template (simple-texlive-package
|
(package
|
||||||
"texlive-minted"
|
(name "texlive-minted")
|
||||||
(list "/doc/latex/minted/"
|
(version (number->string %texlive-revision))
|
||||||
"/source/latex/minted/"
|
(source (texlive-origin
|
||||||
"/tex/latex/minted/")
|
name version
|
||||||
(base32
|
(list "doc/latex/minted/" "source/latex/minted/"
|
||||||
"13cjsjb3b04n9arwp46ayk8fcicylxq5g1864cpxl1lxjxh1yi0l"))))
|
"tex/latex/minted/")
|
||||||
(package
|
(base32
|
||||||
(inherit template)
|
"13cjsjb3b04n9arwp46ayk8fcicylxq5g1864cpxl1lxjxh1yi0l")))
|
||||||
(arguments
|
(outputs '("out" "doc"))
|
||||||
(substitute-keyword-arguments (package-arguments template)
|
(build-system texlive-build-system)
|
||||||
((#:tex-directory _ #t)
|
(propagated-inputs
|
||||||
"latex/minted")))
|
(list python-pygments
|
||||||
(propagated-inputs (list python-pygments
|
texlive-etoolbox
|
||||||
texlive-etoolbox
|
texlive-fancyvrb
|
||||||
texlive-fancyvrb
|
texlive-float
|
||||||
texlive-float
|
texlive-framed
|
||||||
texlive-framed
|
texlive-fvextra
|
||||||
texlive-fvextra
|
texlive-graphics
|
||||||
texlive-ifplatform
|
texlive-ifplatform
|
||||||
texlive-lineno
|
texlive-kvoptions
|
||||||
texlive-newfloat
|
texlive-lineno
|
||||||
texlive-xstring))
|
texlive-newfloat
|
||||||
(home-page "https://ctan.org/pkg/minted")
|
texlive-pdftexcmds
|
||||||
(synopsis "Highlight source code in LaTeX documents")
|
texlive-tools
|
||||||
(description "This package facilitates expressive syntax highlighting in
|
texlive-xstring))
|
||||||
LaTeX using the Pygments library. This package also provides options to
|
(home-page "https://ctan.org/pkg/minted")
|
||||||
customize the highlighted source code output using fancyvrb and fvextra.")
|
(synopsis "Highlighted source code for LaTeX")
|
||||||
(license license:lppl1.3+))))
|
(description
|
||||||
|
"The package that facilitates expressive syntax highlighting in LaTeX
|
||||||
|
using the powerful Pygments library. The package also provides options to
|
||||||
|
customize the highlighted source code output using @code{fancyvrb}.")
|
||||||
|
(license license:lppl1.3+)))
|
||||||
|
|
||||||
(define-public texlive-caption
|
(define-public texlive-caption
|
||||||
(package
|
(package
|
||||||
|
|
Reference in New Issue