me
/
guix
Archived
1
0
Fork 0

gnu: Add clojure-data-csv.

* gnu/packages/clojure.scm (clojure-data-csv): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Fabio Natali 2022-10-31 20:50:55 +00:00 committed by Ludovic Courtès
parent e24f7762ac
commit 98e4bfe96f
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 25 additions and 0 deletions

View File

@ -372,6 +372,31 @@ All operations work on either byte arrays or Input/OutputStreams. Performance
is on par with Java implementations, e.g., Apache commons-codec.")
(license license:epl1.0)))
(define-public clojure-data-csv
(package
(name "clojure-data-csv")
(version "1.0.1")
(home-page "https://github.com/clojure/data.csv")
(source (origin
(method git-fetch)
(uri (git-reference
(url home-page)
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1mh1qli6xrw4s3yj9cxxh50z4m7z08indj3ya30znkhi4xsphii2"))))
(build-system clojure-build-system)
(arguments
'(#:source-dirs '("src/main/clojure")
#:test-dirs '("src/test/clojure")
#:doc-dirs '()))
(synopsis "Clojure library for reading and writing CSV data")
(description "@code{data.csv} is a Clojure library for reading and writing
CSV data. @code{data.csv} follows the RFC4180 specification but is more
relaxed.")
(license license:epl1.0)))
(define-public clojure-data-xml
(package
(name "clojure-data-xml")