this repo has no description
1opam-version: "2.0"
2maintainer: "thomas@gazagnaire.org"
3homepage: "https://github.com/mirage/mirage-flow"
4bug-reports: "https://github.com/mirage/mirage-flow/issues"
5dev-repo: "git+https://github.com/mirage/mirage-flow.git"
6doc: "https://mirage.github.io/mirage-flow/"
7authors: ["Thomas Gazagnaire" "Dave Scott"]
8tags: [ "org:mirage"]
9license: "ISC"
10
11build: [
12 ["jbuilder" "subst" "-p" name] {dev}
13 ["jbuilder" "build" "-p" name "-j" jobs]
14 ["jbuilder" "runtest"] {with-test}
15]
16depends: [
17 "ocaml"
18 "jbuilder" {>= "1.0+beta7"}
19 "fmt" {< "0.8.10"}
20 "mirage-flow" {>= "1.3.0" & < "2.0.0"}
21 "mirage-flow-lwt" {>= "1.3.0"}
22 "lwt"
23 "cstruct" {>= "2.3.0" & < "6.0.1"}
24 "alcotest" {with-test & < "1.4.0"}
25 "result" {with-test}
26]
27synopsis: "Flow implementations and combinators for MirageOS"
28description: """
29This repo contains generic operations over Mirage `FLOW` implementations.
30
31Please consult [the API documentation](https://mirage.github.io/mirage-flow/index.html).
32
33### Example usage
34
35In a top-level like utop:
36```ocaml"""
37url {
38 src:
39 "https://github.com/mirage/mirage-flow/releases/download/v1.3.0/mirage-flow-1.3.0.tbz"
40 checksum: [
41 "sha256=6684503e5ac6b4571dcc31677edbc8fd55dc97476a13138ebd696a931f9f18b3"
42 "md5=2811566ba9895e429716e4c315cd43e6"
43 ]
44}