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 "cmdliner" 27 "astring" 28 "named-pipe" {>= "0.4.0"} 29 "fmt" 30 "logs" {>= "0.5.0"} 31 "win-error" 32 "ppx_sexp_conv" 33 "ppx_tools" 34 "alcotest" {with-test & >= "0.4.0"} 35 "ocaml-migrate-parsetree" {< "2.0.0"} 36] 37synopsis: "An implementation of the 9P protocol in pure OCaml" 38description: """ 39[![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) 40 41ocaml-9p is an implementation of the 9P protocol, written in 42a Mirage-friendly style. 43 44Please read the [API documentation](https://mirage.github.io/ocaml-9p). 45 46Example of the CLI example program: 47``` 48o9p ls --username vagrant /var 49drwxr-xr-x ? root root 4096 Feb 2 2015 lib 50drwxr-xr-x ? root root 4096 Mar 15 2015 cache 51-rwxrwxrwx ? root root 9 May 10 2014 lock 52drwxrwxrwx ? root root 4096 Jul 6 2015 tmp 53drwxr-xr-x ? root root 4096 May 11 2014 spool 54drwxrwxr-x ? root sshd 4096 Sep 28 2015 log 55drwxr-xr-x ? root root 4096 Sep 21 2015 backups 56drwxrwxr-x ? root mail 4096 Apr 16 2014 mail 57drwxr-xr-x ? root root 4096 Apr 16 2014 opt 58drwxrwxr-x ? root 50 4096 Apr 10 2014 local 59-rwxrwxrwx ? root root 4 May 10 2014 run 60``` 61 62This library supports the [9P2000.u extension](http://ericvh.github.io/9p-rfc/rfc9p2000.u.html)""" 63url { 64 src: 65 "https://github.com/mirage/ocaml-9p/releases/download/v0.12.0/protocol-9p-0.12.0.tbz" 66 checksum: [ 67 "sha256=c2a4f22a5a1d8b589a05a33c8c08cdfc3aa372179c3cd0aac3003e7ee3c730fe" 68 "md5=aebba63a018939bc112de499fa32fafb" 69 ] 70}