this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "David Scott" "David Sheets" "Thomas Leonard" ]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-9p"
6dev-repo: "git+https://github.com/mirage/ocaml-9p.git"
7bug-reports: "https://github.com/mirage/ocaml-9p/issues"
8doc: "https://mirage.github.io/ocaml-9p/"
9
10build: [
11 ["jbuilder" "build" "--only-packages=protocol-9p"
12 "--no-config" {jbuilder:version >= "1.0+beta18"}
13 ]
14 ["jbuilder" "runtest"
15 "--no-config" {jbuilder:version >= "1.0+beta18"}
16 ] {with-test}
17]
18depends: [
19 "ocaml" {>= "4.03.0"}
20 "base-bytes"
21 "cstruct" {>= "1.9.0" & < "4.0.0"}
22 "cstruct-lwt" {< "3.4.0"}
23 "sexplib" {> "113.00.00"}
24 "result"
25 "rresult"
26 "mirage-flow-lwt"
27 "mirage-kv-lwt" {< "2.0.0"}
28 "mirage-channel-lwt"
29 "lwt" {>= "3.0.0"}
30 "base-unix"
31 "cmdliner"
32 "astring"
33 "named-pipe" {>= "0.4.0"}
34 "fmt"
35 "logs" {>= "0.5.0"}
36 "win-error"
37 "ppx_deriving"
38 "ppx_sexp_conv" {>= "v0.9.0"}
39 "ocamlfind" {build}
40 "jbuilder"
41 "ppx_tools"
42 "alcotest" {with-test & >= "0.4.0"}
43 "ppx_cstruct"
44]
45conflicts: [
46 "io-page" {>= "2.0.0"}
47]
48synopsis: "An implementation of the 9P protocol in pure OCaml"
49description: """
50[](https://travis-ci.org/mirage/ocaml-9p) [](https://coveralls.io/r/mirage/ocaml-9p?branch=master)
51
52ocaml-9p is an implementation of the 9P protocol, written in
53a Mirage-friendly style.
54
55Please read the [API documentation](https://mirage.github.io/ocaml-9p).
56
57Example of the CLI example program:
58```
59o9p ls --username vagrant /var
60drwxr-xr-x ? root root 4096 Feb 2 2015 lib
61drwxr-xr-x ? root root 4096 Mar 15 2015 cache
62-rwxrwxrwx ? root root 9 May 10 2014 lock
63drwxrwxrwx ? root root 4096 Jul 6 2015 tmp
64drwxr-xr-x ? root root 4096 May 11 2014 spool
65drwxrwxr-x ? root sshd 4096 Sep 28 2015 log
66drwxr-xr-x ? root root 4096 Sep 21 2015 backups
67drwxrwxr-x ? root mail 4096 Apr 16 2014 mail
68drwxr-xr-x ? root root 4096 Apr 16 2014 opt
69drwxrwxr-x ? root 50 4096 Apr 10 2014 local
70-rwxrwxrwx ? root root 4 May 10 2014 run
71```
72
73This library supports the [9P2000.u extension](http://ericvh.github.io/9p-rfc/rfc9p2000.u.html)"""
74url {
75 src: "https://github.com/mirage/ocaml-9p/archive/v0.10.0.tar.gz"
76 checksum: [
77 "sha256=b19518054d727d4ef319900c602922a81b915e9022b2715127e23626164a1228"
78 "md5=b2a8aa6eaebb88ab1f9dd5fa55d57031"
79 ]
80}