diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/clojure.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/clojure.scm b/gnu/packages/clojure.scm index 3b50def4db3..e28998b570e 100644 --- a/gnu/packages/clojure.scm +++ b/gnu/packages/clojure.scm | |||
| @@ -372,6 +372,31 @@ All operations work on either byte arrays or Input/OutputStreams. Performance | |||
| 372 | is on par with Java implementations, e.g., Apache commons-codec.") | 372 | is on par with Java implementations, e.g., Apache commons-codec.") |
| 373 | (license license:epl1.0))) | 373 | (license license:epl1.0))) |
| 374 | 374 | ||
| 375 | (define-public clojure-data-csv | ||
| 376 | (package | ||
| 377 | (name "clojure-data-csv") | ||
| 378 | (version "1.0.1") | ||
| 379 | (home-page "https://github.com/clojure/data.csv") | ||
| 380 | (source (origin | ||
| 381 | (method git-fetch) | ||
| 382 | (uri (git-reference | ||
| 383 | (url home-page) | ||
| 384 | (commit (string-append "v" version)))) | ||
| 385 | (file-name (git-file-name name version)) | ||
| 386 | (sha256 | ||
| 387 | (base32 | ||
| 388 | "1mh1qli6xrw4s3yj9cxxh50z4m7z08indj3ya30znkhi4xsphii2")))) | ||
| 389 | (build-system clojure-build-system) | ||
| 390 | (arguments | ||
| 391 | '(#:source-dirs '("src/main/clojure") | ||
| 392 | #:test-dirs '("src/test/clojure") | ||
| 393 | #:doc-dirs '())) | ||
| 394 | (synopsis "Clojure library for reading and writing CSV data") | ||
| 395 | (description "@code{data.csv} is a Clojure library for reading and writing | ||
| 396 | CSV data. @code{data.csv} follows the RFC4180 specification but is more | ||
| 397 | relaxed.") | ||
| 398 | (license license:epl1.0))) | ||
| 399 | |||
| 375 | (define-public clojure-data-xml | 400 | (define-public clojure-data-xml |
| 376 | (package | 401 | (package |
| 377 | (name "clojure-data-xml") | 402 | (name "clojure-data-xml") |
