forked from mirage/ocaml-9p
-
Notifications
You must be signed in to change notification settings - Fork 1
/
protocol-9p-tool.opam
47 lines (46 loc) · 1.36 KB
/
protocol-9p-tool.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["David Scott" "David Sheets" "Thomas Leonard" "Anil Madhavapeddy"]
license: "ISC"
homepage: "https://github.com/mirage/ocaml-9p"
doc: "https://mirage.github.io/ocaml-9p/"
bug-reports: "https://github.com/mirage/ocaml-9p/issues"
depends: [
"ocaml" {>= "4.03.0"}
"dune" {>= "1.0"}
"protocol-9p"
"protocol-9p-unix"
"base-bytes"
"rresult"
"logs" {>= "0.5.0"}
"fmt"
"lambda-term"
"win-error"
"cmdliner"
]
build: [
["dune" "subst"] {dev}
["dune" "build" "-p" name "-j" jobs]
]
dev-repo: "git+https://github.com/mirage/ocaml-9p.git"
synopsis: "An implementation of the 9p protocol in pure OCaml"
description: """
ocaml-9p is an implementation of the 9P protocol, written in
a Mirage-friendly style. This opam package contains the Unix
client.
Example of the CLI program is:
```
o9p ls --username vagrant /var
drwxr-xr-x ? root root 4096 Feb 2 2015 lib
drwxr-xr-x ? root root 4096 Mar 15 2015 cache
-rwxrwxrwx ? root root 9 May 10 2014 lock
drwxrwxrwx ? root root 4096 Jul 6 2015 tmp
drwxr-xr-x ? root root 4096 May 11 2014 spool
drwxrwxr-x ? root sshd 4096 Sep 28 2015 log
drwxr-xr-x ? root root 4096 Sep 21 2015 backups
drwxrwxr-x ? root mail 4096 Apr 16 2014 mail
drwxr-xr-x ? root root 4096 Apr 16 2014 opt
drwxrwxr-x ? root 50 4096 Apr 10 2014 local
-rwxrwxrwx ? root root 4 May 10 2014 run
```
"""