this repo has no description
1opam-version: "2.0"
2maintainer: "dave@recoil.org"
3authors: [ "Dave Scott" "Thomas Gazagnaire" "David Allsopp" ]
4tags: ["org:xapi-project" "org:mirage"]
5homepage: "https://github.com/mirage/ocaml-tar"
6bug-reports: "https://github.com/mirage/ocaml-tar/issues"
7dev-repo: "git+https://github.com/mirage/ocaml-tar.git"
8doc: "https://mirage.github.io/ocaml-tar/"
9
10build: [
11 ["jbuilder" "subst" "-p" name "--name" name] {dev}
12 ["jbuilder" "build" "-p" name "-j" jobs]
13]
14
15depends: [
16 "ocaml" {>= "4.03.0" & < "5.0"}
17 "jbuilder" {>= "1.0+beta7"}
18 "ppx_tools"
19 "ppx_cstruct" {<"3.4.0"}
20 "cstruct" {>= "1.9.0" & < "3.4.0"}
21 "re"
22 "result"
23]
24synopsis: "Decode and encode tar files"
25description: """
26tar-format is a simple library to read and write tar files with an emphasis on
27streaming.
28
29This is pure OCaml code, no C bindings."""
30url {
31 src:
32 "https://github.com/mirage/ocaml-tar/releases/download/v0.9.0/tar-0.9.0.tbz"
33 checksum: [
34 "sha256=7eb618c518816a81adf2c601feea911a98dfc229f7006dcc2768b932709768aa"
35 "md5=4524e7c290530d4243e0e9429fb3d224"
36 ]
37}