gnu: Update ocaml-eio to 0.8.1.
* gnu/packages/ocaml.scm (ocaml-eio): Update to 0.8.1. [native-inputs]: Add ocaml-mdx. (ocaml-mtime): Update to 2.0.0. [source]: Use https instead of http. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
506f8ffff1
commit
de45676c2a
|
@ -2366,14 +2366,14 @@ manipulate such data.")
|
||||||
(define-public ocaml-mtime
|
(define-public ocaml-mtime
|
||||||
(package
|
(package
|
||||||
(name "ocaml-mtime")
|
(name "ocaml-mtime")
|
||||||
(version "1.4.0")
|
(version "2.0.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "http://erratique.ch/software/mtime/releases/"
|
(uri (string-append "https://erratique.ch/software/mtime/releases/"
|
||||||
"mtime-" version ".tbz"))
|
"mtime-" version ".tbz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1xy6lg52n2zynp4p164ym9j0f1b95j5n4bi5y4mbdrry9w99h32m"))))
|
"1ss4w3qxsfp51d88r0j7dzqs05dbb1xdx11hn1jl9cvd03ma0g9z"))))
|
||||||
(build-system ocaml-build-system)
|
(build-system ocaml-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list ocamlbuild opam))
|
(list ocamlbuild opam))
|
||||||
|
@ -2841,7 +2841,7 @@ to which allows adding and looking up bindings in a type safe manner.")
|
||||||
(define ocaml-eio
|
(define ocaml-eio
|
||||||
(package
|
(package
|
||||||
(name "ocaml-eio")
|
(name "ocaml-eio")
|
||||||
(version "0.7")
|
(version "0.8.1")
|
||||||
(home-page "https://github.com/ocaml-multicore/eio")
|
(home-page "https://github.com/ocaml-multicore/eio")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -2851,7 +2851,7 @@ to which allows adding and looking up bindings in a type safe manner.")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256 (base32
|
(sha256 (base32
|
||||||
"118raxdwv6pn5b152ffdhmwdi0l4wlwflcj2nmckfmm7v1z2fq4s"))))
|
"02q9i5wbb2497vd4ypc9d9p4zi3lmx0rsv8faiy7h8dnnzbjjf4z"))))
|
||||||
(build-system dune-build-system)
|
(build-system dune-build-system)
|
||||||
(arguments `(#:package "eio"))
|
(arguments `(#:package "eio"))
|
||||||
(propagated-inputs (list ocaml-bigstringaf
|
(propagated-inputs (list ocaml-bigstringaf
|
||||||
|
@ -2865,7 +2865,10 @@ to which allows adding and looking up bindings in a type safe manner.")
|
||||||
ocaml-hmap
|
ocaml-hmap
|
||||||
ocaml-mtime
|
ocaml-mtime
|
||||||
ocaml-odoc))
|
ocaml-odoc))
|
||||||
(native-inputs (list ocaml-astring ocaml-crowbar ocaml-alcotest))
|
(native-inputs (list ocaml-astring
|
||||||
|
ocaml-crowbar
|
||||||
|
ocaml-alcotest
|
||||||
|
ocaml-mdx))
|
||||||
(synopsis "Effect-based direct-style IO API for OCaml")
|
(synopsis "Effect-based direct-style IO API for OCaml")
|
||||||
(description "This package provides an effect-based IO API for multicore
|
(description "This package provides an effect-based IO API for multicore
|
||||||
OCaml with fibers.")
|
OCaml with fibers.")
|
||||||
|
|
Reference in New Issue