this repo has no description
1opam-version: "2.0"
2synopsis: "Read and write tar format files via MirageOS interfaces"
3description: """
4tar is a library to read and write tar files with an emphasis on
5streaming. This library is functorised over external OS dependencies
6to facilitate embedding within MirageOS.
7"""
8maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"]
9authors: [
10 "Dave Scott"
11 "Thomas Gazagnaire"
12 "David Allsopp"
13 "Antonin Décimo"
14 "Reynir Björnsson"
15 "Hannes Mehnert"
16]
17license: "ISC"
18tags: ["org:xapi-project" "org:mirage"]
19homepage: "https://github.com/mirage/ocaml-tar"
20doc: "https://mirage.github.io/ocaml-tar/"
21bug-reports: "https://github.com/mirage/ocaml-tar/issues"
22depends: [
23 "dune" {>= "2.9"}
24 "ocaml" {>= "4.08.0"}
25 "cstruct" {>= "6.0.0"}
26 "lwt" {>= "5.6.0"}
27 "mirage-block" {>= "2.0.0"}
28 "mirage-clock" {>= "4.0.0"}
29 "mirage-kv" {>= "6.0.0"}
30 "optint"
31 "ptime"
32 "tar" {= version}
33 "mirage-block-unix" {with-test & >= "2.13.0"}
34 "mirage-clock-unix" {with-test & >= "4.0.0"}
35 "alcotest" {>= "1.7.0" & with-test}
36 "alcotest-lwt" {>= "1.7.0" & with-test}
37 "tar-unix" {with-test & = version}
38 "odoc" {with-doc}
39]
40conflicts: [
41 "result" {< "1.5"}
42]
43build: [
44 ["dune" "subst"] {dev}
45 [
46 "dune"
47 "build"
48 "-p"
49 name
50 "-j"
51 jobs
52 "--promote-install-files=false"
53 "@install"
54 "@runtest" {with-test}
55 "@doc" {with-doc}
56 ]
57 ["dune" "install" "-p" name "--create-install-files" name]
58]
59dev-repo: "git+https://github.com/mirage/ocaml-tar.git"
60url {
61 src:
62 "https://github.com/mirage/ocaml-tar/releases/download/v3.0.0/tar-3.0.0.tbz"
63 checksum: [
64 "sha256=0451f858db837ae47b8e792a999d5b9a688782c981377fd5b2dcf58cfb86b2f3"
65 "sha512=609f9b40b28b6a3045a628107a0879fad05d5dece469772175881cd7858c2de7fb4858db9727f1740603f0cc19d6295b37bb0df1a3f7afdc05867b622551f6f4"
66 ]
67}
68x-commit-hash: "d8c7eae2cdadcf3354e70f06ca350a2f3b1c9c1b"