me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-vcell.

* gnu/packages/tex.scm (texlive-vcell): New variable.
master
Nicolas Goaziou 2023-08-29 16:04:19 +02:00
parent e80a11cde4
commit 03aa57c41f
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 20 additions and 0 deletions

View File

@ -99236,6 +99236,26 @@ provided that the name has been structured appropriately: the package expects
the file name to consist of a set of words separated by hyphens.") the file name to consist of a set of words separated by hyphens.")
(license license:lppl))) (license license:lppl)))
(define-public texlive-vcell
(package
(name "texlive-vcell")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/vcell/" "tex/latex/vcell/")
(base32
"0y4gxf5waxs7n9xb9qbraa9isk11pvxm5737z0j069kg6bkra5rl")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/vcell")
(synopsis "Vertical alignment of content inside table cells")
(description
"This package offers low-level macros to build rows with vertically-aligned
cells (top, middle or bottom) and calculate the height of a row. These cells
can have variable or fixed height and can be paragraph-cells or inline-cells.
Different vertical alignments can be used in the same row.")
(license license:lppl1.3c)))
;;; ;;;
;;; Avoid adding new packages to the end of this file. To reduce the chances ;;; Avoid adding new packages to the end of this file. To reduce the chances
;;; of a merge conflict, place them above by existing packages with similar ;;; of a merge conflict, place them above by existing packages with similar