this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: ["David Scott" "David Sheets" "Thomas Leonard" "Anil Madhavapeddy"]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-9p"
6doc: "https://mirage.github.io/ocaml-9p/"
7bug-reports: "https://github.com/mirage/ocaml-9p/issues"
8depends: [
9 "ocaml" {>= "4.03.0"}
10 "dune" {>= "1.0"}
11 "base-bytes"
12 "cstruct" {>= "3.0.0" & < "4.0.0"}
13 "sexplib" {> "113.00.00"}
14 "rresult"
15 "mirage-flow-lwt"
16 "mirage-channel-lwt"
17 "lwt" {>= "3.0.0"}
18 "astring"
19 "fmt"
20 "logs" {>= "0.5.0"}
21 "win-error"
22 "ppx_sexp_conv" {>= "v0.9.0"}
23 "alcotest" {with-test & >= "0.4.0"}
24]
25build: [
26 ["dune" "subst"] {dev}
27 ["dune" "build" "-p" name "-j" jobs]
28]
29dev-repo: "git+https://github.com/mirage/ocaml-9p.git"
30synopsis: "An implementation of the 9p protocol in pure OCaml"
31description: """
32ocaml-9p is an implementation of the 9P protocol, written in
33a Mirage-friendly style. This library supports the
34[9P2000.u extension](http://ericvh.github.io/9p-rfc/rfc9p2000.u.html).
35Please also refer to the `protocol-9p-unix` package for a
36Unix/Windows implementation, and to `protocol-9p-tool` for a
37CLI interface.
38"""
39url {
40 src:
41 "https://github.com/mirage/ocaml-9p/releases/download/v2.0.0/protocol-9p-v2.0.0.tbz"
42 checksum: [
43 "sha256=ddbef074604462cf26039524fe9d72e2abe339c2db2da761736b4f0c29e8e7a8"
44 "md5=54e0a60a1913aaa0ef9a2547a635b754"
45 ]
46}