Skip to content
Snippets Groups Projects
Unverified Commit 91df9eae authored by Ben Woodcroft's avatar Ben Woodcroft
Browse files

gnu: Add ocaml-csv.

* gnu/packages/ocaml.scm (ocaml-csv): New variable.
parent 0c4dbdc2
No related branches found
No related tags found
No related merge requests found
...@@ -1243,6 +1243,30 @@ (define-public ocaml-sqlite3 ...@@ -1243,6 +1243,30 @@ (define-public ocaml-sqlite3
@code{ocaml-sqlite}.") @code{ocaml-sqlite}.")
(license license:expat))) (license license:expat)))
(define-public ocaml-csv
(package
(name "ocaml-csv")
(version "1.6")
(source
(origin
(method url-fetch)
(uri
(string-append
"http://github.com/Chris00/ocaml-csv/releases/download/"
version "/csv-" version ".tar.gz"))
(sha256
(base32
"0rv7x843vn6scxj87hzl01yqrl26rc27lr8s7z6rp9vs745g05zj"))))
(build-system ocaml-build-system)
(home-page "https://github.com/Chris00/ocaml-csv")
(synopsis "Pure OCaml functions to read and write CSV")
(description
"@dfn{Comma separated values} (CSV) is a simple tabular format supported
by all major spreadsheets. This library implements pure OCaml functions to
read and write files in this format as well as some convenience functions to
manipulate such data.")
(license (package-license camlp4))))
(define-public ocaml-mtime (define-public ocaml-mtime
(package (package
(name "ocaml-mtime") (name "ocaml-mtime")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment