forked from mirage/ocaml-tar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune-project
79 lines (74 loc) · 1.77 KB
/
dune-project
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
(lang dune 2.9)
(name tar)
(formatting disabled)
(generate_opam_files true)
(source (github mirage/ocaml-tar))
(license ISC)
(authors
"Dave Scott"
"Thomas Gazagnaire"
"David Allsopp"
"Antonin Décimo"
)
(maintainers "[email protected]")
(documentation "https://mirage.github.io/ocaml-tar/")
(package
(name tar)
(synopsis "Decode and encode tar format files in pure OCaml")
(description
"\| tar is a simple library to read and write tar files with an emphasis on
"\| streaming.
"\|
"\| This is pure OCaml code, no C bindings.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
camlp-streams
(ocaml (>= 4.08.0))
(ppx_cstruct (and :build (>= 3.6.0)))
(cstruct (>= 6.0.0))
(re (>= 1.7.2))
)
)
(package
(name tar-unix)
(synopsis "Decode and encode tar format files from Unix")
(description
"\| tar is a simple library to read and write tar files with an emphasis on
"\| streaming. This library provides a Unix or Windows compatible interface.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
(ocaml (>= 4.03.0))
(cstruct (>= 6.0.0))
cstruct-lwt
lwt
(re (>= 1.7.2))
(tar (= :version))
)
)
(package
(name tar-mirage)
(synopsis "Read and write tar format files via MirageOS interfaces")
(description
"\| tar is a simple library to read and write tar files with an emphasis on
"\| streaming. This library is functorised over external OS dependencies
"\| to facilitate embedding within MirageOS.
)
(tags ("org:xapi-project" "org:mirage"))
(depends
(ocaml (>= 4.08.0))
(cstruct (>= 1.9.0))
(io-page (>= 2.4.0))
lwt
(mirage-block (>= 2.0.0))
(mirage-kv (>= 3.0.0))
ptime
(re (>= 1.7.2))
(tar (= :version))
(mirage-block-unix (and :with-test (>= 2.5.0)))
(ounit2 :with-test)
(ounit2-lwt :with-test)
(tar-unix (and :with-test (= :version)))
)
)