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" {>="1.0.0" & < "2.0.0"}
12 "protocol-9p-unix" {>="1.0.0" & <"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]
21build: [
22 ["dune" "subst"] {dev}
23 ["dune" "build" "-p" name "-j" jobs]
24]
25dev-repo: "git+https://github.com/mirage/ocaml-9p.git"
26synopsis: "An implementation of the 9p protocol in pure OCaml"
27description: """
28ocaml-9p is an implementation of the 9P protocol, written in
29a Mirage-friendly style. This opam package contains the Unix
30client.
31
32Example of the CLI program is:
33```
34o9p ls --username vagrant /var
35drwxr-xr-x ? root root 4096 Feb 2 2015 lib
36drwxr-xr-x ? root root 4096 Mar 15 2015 cache
37-rwxrwxrwx ? root root 9 May 10 2014 lock
38drwxrwxrwx ? root root 4096 Jul 6 2015 tmp
39drwxr-xr-x ? root root 4096 May 11 2014 spool
40drwxrwxr-x ? root sshd 4096 Sep 28 2015 log
41drwxr-xr-x ? root root 4096 Sep 21 2015 backups
42drwxrwxr-x ? root mail 4096 Apr 16 2014 mail
43drwxr-xr-x ? root root 4096 Apr 16 2014 opt
44drwxrwxr-x ? root 50 4096 Apr 10 2014 local
45-rwxrwxrwx ? root root 4 May 10 2014 run
46```
47"""
48url {
49 src:
50 "https://github.com/mirage/ocaml-9p/releases/download/v1.0.0/protocol-9p-v1.0.0.tbz"
51 checksum: [
52 "sha256=76aa5851ba737457b3af4f328e06cd180374a53035fd2d648cc7795248af14d6"
53 "md5=61542ca258532b913b6b40e12160cee2"
54 ]
55}