mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add ocaml-fiber.
* gnu/packages/ocaml.scm (ocaml-fiber): New variable. Change-Id: Ibfab7cde463c806a89836bc42e3b84720fbf7206 Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
This commit is contained in:
parent
31a1e7d375
commit
87d36c1e31
1 changed files with 25 additions and 0 deletions
|
@ -8798,6 +8798,31 @@ This library offers no backwards compatibility guarantees.")))
|
|||
This library offers no backwards compatibility guarantees.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-fiber
|
||||
(package
|
||||
(name "ocaml-fiber")
|
||||
(home-page "https://github.com/ocaml-dune/fiber")
|
||||
(version "3.7.0")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"085v1dfxrb4wnkgysghj5q4vr4nx3nxr84rqmy874dr3pk30740n"))))
|
||||
(build-system dune-build-system)
|
||||
(arguments
|
||||
'(#:package "fiber"))
|
||||
(propagated-inputs (list dune-stdune dune-dyn))
|
||||
(native-inputs (list ocaml-odoc ocaml-ppx-expect))
|
||||
(synopsis "Structured concurrency library")
|
||||
(description
|
||||
"This library implements structured concurrency for ocaml.
|
||||
It offers no backwards compatibility guarantees.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ocaml-either
|
||||
(package
|
||||
(name "ocaml-either")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue