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 "ppx_tools" 19 "ppx_cstruct" {< "3.4.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] 38synopsis: "An implementation of the 9P protocol in pure OCaml" 39description: """ 40[![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) 41 42ocaml-9p is an implementation of the 9P protocol, written in 43a Mirage-friendly style. 44 45Please read the [API documentation](https://mirage.github.io/ocaml-9p). 46 47Example of the CLI example program: 48``` 49o9p ls --username vagrant /var 50drwxr-xr-x ? root root 4096 Feb 2 2015 lib 51drwxr-xr-x ? root root 4096 Mar 15 2015 cache 52-rwxrwxrwx ? root root 9 May 10 2014 lock 53drwxrwxrwx ? root root 4096 Jul 6 2015 tmp 54drwxr-xr-x ? root root 4096 May 11 2014 spool 55drwxrwxr-x ? root sshd 4096 Sep 28 2015 log 56drwxr-xr-x ? root root 4096 Sep 21 2015 backups 57drwxrwxr-x ? root mail 4096 Apr 16 2014 mail 58drwxr-xr-x ? root root 4096 Apr 16 2014 opt 59drwxrwxr-x ? root 50 4096 Apr 10 2014 local 60-rwxrwxrwx ? root root 4 May 10 2014 run 61``` 62 63This library supports the [9P2000.u extension](http://ericvh.github.io/9p-rfc/rfc9p2000.u.html)""" 64url { 65 src: 66 "https://github.com/mirage/ocaml-9p/releases/download/v0.11.1/protocol-9p-0.11.1.tbz" 67 checksum: [ 68 "sha256=f17df5cee1efbb912bebfa0a124dea21af8db3ddaa6f7ce603f18ca448e29491" 69 "md5=577a7fddf019b59dc7f1808de6e51987" 70 ] 71}