forked from mirage/ocaml-tar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtar-mirage.opam
37 lines (37 loc) · 1.1 KB
/
tar-mirage.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
opam-version: "2.0"
maintainer: "[email protected]"
authors: ["Dave Scott" "Thomas Gazagnaire" "David Allsopp"]
tags: ["org:xapi-project" "org:mirage"]
homepage: "https://github.com/mirage/ocaml-tar"
doc: "https://mirage.github.io/ocaml-tar/"
bug-reports: "https://github.com/mirage/ocaml-tar/issues"
depends: [
"ocaml" {>= "4.05.0"}
"dune" {build & >= "1.0"}
"tar"
"cstruct" {>= "1.9.0"}
"re" {>="1.7.2"}
"mirage-block"
"mirage-block-lwt"
"mirage-kv" {>= "2.0.0"}
"mirage-kv-lwt" {>= "2.0.0"}
"lwt"
"io-page"
"ptime"
"mirage-block-unix" {with-test & >= "2.5.0"}
"io-page-unix" {with-test}
"ounit" {with-test}
"tar-unix" {with-test}
]
build: [
["dune" "subst"] {pinned}
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/mirage/ocaml-tar.git"
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.
"""