You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
854 B
28 lines
854 B
;; guix package definition
|
|
(use-modules (guix packages)
|
|
(guix download)
|
|
(guix build-system gnu)
|
|
(guix licenses))
|
|
|
|
(define repo-url "https://git.bradymcd.ca/brady/guile-csv/")
|
|
|
|
(package
|
|
(name "guile-csv2")
|
|
(version "1.0")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (string-append repo-url
|
|
"guile-csv-"
|
|
version
|
|
".tar.gz"))
|
|
(sha-256
|
|
(base-32
|
|
;; ADD THE HASH
|
|
))))
|
|
(build-system gnu-build-system)
|
|
(synopsis "A version of guile-csv. csv parsing for Guile")
|
|
(description
|
|
"This is a package for Guile v3. Previous versions of guile-csv were awkward to use with sxml manipulation tools. This adds convenience for that use case. If you don't want or need to use (pre-post-order) and friends on your data, prefer the original package by Nala Ginrut.")
|
|
(home-page repo-url)
|
|
(license lgpl3))
|