me
/
guix
Archived
1
0
Fork 0

gnu: Add texlive-csvsimple.

* gnu/packages/tex.scm (texlive-csvsimple): New variable.
master
Nicolas Goaziou 2023-08-29 15:47:05 +02:00
parent 5830a81ae7
commit 91d7c07de2
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 22 additions and 0 deletions

View File

@ -77600,6 +77600,28 @@ There is one macro to set things up, one to extract the data, and one to tell
if the field is empty or not.") if the field is empty or not.")
(license license:lppl1.3+))) (license license:lppl1.3+)))
(define-public texlive-csvsimple
(package
(name "texlive-csvsimple")
(version (number->string %texlive-revision))
(source (texlive-origin
name version
(list "doc/latex/csvsimple/"
"tex/latex/csvsimple/")
(base32
"1ayks1wrjg0561ckiyx6l61xhz0nxqalfr18g06pjiw3cf2lx36f")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(home-page "https://ctan.org/pkg/csvsimple")
(synopsis "Simple CSV file processing")
(description
"The package provides a simple LaTeX interface for the processing of files
with comma separated values (CSV); it relies on the key value syntax supported
by @code{pgfkeys} to simplify usage. Filtering and table generation are
especially supported; however, this lightweight tool offers no support for
data sorting or data base storage.")
(license license:lppl1.3+)))
;;; ;;;
;;; 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