mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: texlive-tabu: Remove SIMPLE-TEXLIVE-PACKAGE call.
* gnu/packages/tex.scm (texlive-tabu!): Remove SIMPLE-TEXLIVE-PACKAGE call. [propagated-inputs]: Add TEXLIVE-TOOLS. [description]: Shorten it and use proper Texinfo syntax.
This commit is contained in:
parent
936693c1ff
commit
c448952f0a
1 changed files with 21 additions and 29 deletions
|
@ -10974,35 +10974,27 @@ (define-deprecated-package texlive-generic-iftex texlive-iftex)
|
||||||
(define-deprecated-package texlive-generic-ifxetex texlive-iftex)
|
(define-deprecated-package texlive-generic-ifxetex texlive-iftex)
|
||||||
|
|
||||||
(define-public texlive-tabu
|
(define-public texlive-tabu
|
||||||
(let ((template
|
(package
|
||||||
(simple-texlive-package
|
(name "texlive-tabu")
|
||||||
"texlive-tabu"
|
(version (number->string %texlive-revision))
|
||||||
(list "doc/latex/tabu/"
|
(source (texlive-origin
|
||||||
"source/latex/tabu/"
|
name version
|
||||||
"tex/latex/tabu/")
|
(list "doc/latex/tabu/"
|
||||||
(base32 "0mixyrqavipq4ni38z42x3579cdjbz54cp2qqb4q4yhfbl0a4pka"))))
|
"source/latex/tabu/"
|
||||||
(package
|
"tex/latex/tabu/")
|
||||||
(inherit template)
|
(base32 "0mixyrqavipq4ni38z42x3579cdjbz54cp2qqb4q4yhfbl0a4pka")))
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(build-system texlive-build-system)
|
||||||
(substitute-keyword-arguments (package-arguments template)
|
(propagated-inputs
|
||||||
((#:tex-directory _ '())
|
(list texlive-tools
|
||||||
"latex/tabu")
|
texlive-varwidth))
|
||||||
((#:build-targets _ '())
|
(home-page "https://ctan.org/macros/latex/contrib/tabu")
|
||||||
'(list "tabu.dtx"))))
|
(synopsis "Flexible LaTeX tabulars")
|
||||||
(propagated-inputs (list texlive-varwidth))
|
(description
|
||||||
(home-page "https://ctan.org/macros/latex/contrib/tabu")
|
"The package provides an environment, @code{tabu}, which will make any
|
||||||
(synopsis "Flexible LaTeX tabulars")
|
sort of tabular, and an environment @code{longtabu} which provides the
|
||||||
(description
|
facilities of @code{tabu} in a modified @code{longtable} environment.")
|
||||||
"The package provides an environment, tabu, which will make any sort of
|
(license license:lppl1.3+)))
|
||||||
tabular, and an environment longtabu which provides the facilities of tabu in
|
|
||||||
a modified longtable environment. The package requires array, xcolor for
|
|
||||||
coloured rules in tables, and colortbl for coloured cells. The longtabu
|
|
||||||
environment further requires that longtable be loaded. The package itself
|
|
||||||
does not load any of these packages for the user. The tabu environment may be
|
|
||||||
used in place of @code{tabular}, @code{tabular*} and @code{tabularx}
|
|
||||||
environments, as well as the @code{array} environment in maths mode.")
|
|
||||||
(license license:lppl1.3+))))
|
|
||||||
|
|
||||||
(define-public texlive-xkeyval
|
(define-public texlive-xkeyval
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue