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