this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: ["David Scott" "David Sheets" "Thomas Leonard" "Anil Madhavapeddy"]
4license: "ISC"
5homepage: "https://github.com/mirage/ocaml-9p"
6doc: "https://mirage.github.io/ocaml-9p/"
7bug-reports: "https://github.com/mirage/ocaml-9p/issues"
8depends: [
9 "ocaml" {>= "4.03.0"}
10 "dune" {>= "1.0"}
11 "protocol-9p" {>="2.0.0"}
12 "protocol-9p-unix" {>="2.0.0"}
13 "base-bytes"
14 "rresult"
15 "logs" {>= "0.5.0"}
16 "fmt"
17 "lambda-term" {< "2.0"}
18 "win-error"
19 "cmdliner"
20 "cstruct" {< "6.1.0"}
21]
22build: [
23 ["dune" "subst"] {dev}
24 ["dune" "build" "-p" name "-j" jobs]
25]
26dev-repo: "git+https://github.com/mirage/ocaml-9p.git"
27synopsis: "An implementation of the 9p protocol in pure OCaml"
28description: """
29ocaml-9p is an implementation of the 9P protocol, written in
30a Mirage-friendly style. This opam package contains the Unix
31client.
32
33Example of the CLI program is:
34```
35o9p ls --username vagrant /var
36drwxr-xr-x ? root root 4096 Feb 2 2015 lib
37drwxr-xr-x ? root root 4096 Mar 15 2015 cache
38-rwxrwxrwx ? root root 9 May 10 2014 lock
39drwxrwxrwx ? root root 4096 Jul 6 2015 tmp
40drwxr-xr-x ? root root 4096 May 11 2014 spool
41drwxrwxr-x ? root sshd 4096 Sep 28 2015 log
42drwxr-xr-x ? root root 4096 Sep 21 2015 backups
43drwxrwxr-x ? root mail 4096 Apr 16 2014 mail
44drwxr-xr-x ? root root 4096 Apr 16 2014 opt
45drwxrwxr-x ? root 50 4096 Apr 10 2014 local
46-rwxrwxrwx ? root root 4 May 10 2014 run
47```
48"""
49url {
50 src:
51 "https://github.com/mirage/ocaml-9p/releases/download/v2.0.0/protocol-9p-v2.0.0.tbz"
52 checksum: [
53 "sha256=ddbef074604462cf26039524fe9d72e2abe339c2db2da761736b4f0c29e8e7a8"
54 "md5=54e0a60a1913aaa0ef9a2547a635b754"
55 ]
56}