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" "subst" "-p" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13]
14depends: [
15 "ocaml" {>= "4.03.0"}
16 "jbuilder" {>= "1.0+beta10"}
17 "base-bytes"
18 "cstruct" {>= "3.0.0" & < "4.0.0"}
19 "sexplib" {>= "v0.9.0"}
20 "result"
21 "rresult"
22 "mirage-flow-lwt"
23 "mirage-kv-lwt" {< "2.0.0"}
24 "mirage-channel-lwt"
25 "lwt" {>= "3.0.0"}
26 "astring"
27 "fmt"
28 "logs" {>= "0.5.0"}
29 "win-error"
30 "ppx_sexp_conv" {build}
31 "ppx_tools" {build}
32 "alcotest" {with-test & >= "0.4.0"}
33 "ocaml-migrate-parsetree" {< "2.0.0"}
34]
35synopsis: "An implementation of the 9P protocol in pure OCaml"
36description: """
37[](https://travis-ci.org/mirage/ocaml-9p) [](https://coveralls.io/r/mirage/ocaml-9p?branch=master)
38
39ocaml-9p is an implementation of the 9P protocol, written in
40a Mirage-friendly style.
41
42Please read the [API documentation](https://mirage.github.io/ocaml-9p).
43
44Example of the CLI example program:
45```
46o9p ls --username vagrant /var
47drwxr-xr-x ? root root 4096 Feb 2 2015 lib
48drwxr-xr-x ? root root 4096 Mar 15 2015 cache
49-rwxrwxrwx ? root root 9 May 10 2014 lock
50drwxrwxrwx ? root root 4096 Jul 6 2015 tmp
51drwxr-xr-x ? root root 4096 May 11 2014 spool
52drwxrwxr-x ? root sshd 4096 Sep 28 2015 log
53drwxr-xr-x ? root root 4096 Sep 21 2015 backups
54drwxrwxr-x ? root mail 4096 Apr 16 2014 mail
55drwxr-xr-x ? root root 4096 Apr 16 2014 opt
56drwxrwxr-x ? root 50 4096 Apr 10 2014 local
57-rwxrwxrwx ? root root 4 May 10 2014 run
58```
59
60This library supports the [9P2000.u extension](http://ericvh.github.io/9p-rfc/rfc9p2000.u.html)"""
61url {
62 src: "https://github.com/mirage/ocaml-9p/archive/0.12.1.tar.gz"
63 checksum: [
64 "sha256=a356335b391a4ee3f160dcdb3d4787bd4026838faad33bfc3057db688276aa64"
65 "md5=dc8c33276969a86134614ef6575b5428"
66 ]
67}