me
/
guix
Archived
1
0
Fork 0

gnu: ocaml-csv: Update to 2.2.

* gnu/packages/ocaml.scm (ocaml-csv): Update to 2.2.
[source]: Use git-fetch.
[build-system]: Use dune-build-system.
master
Julien Lepiller 2019-04-27 18:01:31 +02:00
parent f9caa17b63
commit e58d05c32e
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 11 additions and 10 deletions

View File

@ -1554,20 +1554,21 @@ coexistence with the old (version 2) SQLite and its OCaml wrapper
(define-public ocaml-csv (define-public ocaml-csv
(package (package
(name "ocaml-csv") (name "ocaml-csv")
(version "1.6") (version "2.2")
(source (source
(origin (origin
(method url-fetch) (method git-fetch)
(uri (uri (git-reference
(string-append (url "https://github.com/Chris00/ocaml-csv")
"https://github.com/Chris00/ocaml-csv/releases/download/" (commit version)))
version "/csv-" version ".tar.gz")) (file-name (git-file-name name version))
(sha256 (sha256
(base32 (base32
"0rv7x843vn6scxj87hzl01yqrl26rc27lr8s7z6rp9vs745g05zj")))) "07qdw8bbvprk78x96pnm807rhs82ks6sxis1cf5nyng8b5nvm2mv"))))
(build-system ocaml-build-system) (build-system dune-build-system)
(native-inputs (arguments
`(("ocamlbuild" ,ocamlbuild))) `(#:package "csv"
#:test-target "."))
(home-page "https://github.com/Chris00/ocaml-csv") (home-page "https://github.com/Chris00/ocaml-csv")
(synopsis "Pure OCaml functions to read and write CSV") (synopsis "Pure OCaml functions to read and write CSV")
(description (description