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"}
17 "jbuilder" {>= "1.0+beta7"}
18 "tar" {= version}
19 "cstruct" {>= "1.9.0"}
20 "cstruct-lwt" {<"3.4.0"}
21 "re"
22 "result"
23 "lwt"
24]
25synopsis: "Decode and encode tar files"
26description: """
27tar-format is a simple library to read and write tar files with an emphasis on
28streaming.
29
30This is pure OCaml code, no C bindings."""
31url {
32 src:
33 "https://github.com/mirage/ocaml-tar/releases/download/v0.9.0/tar-0.9.0.tbz"
34 checksum: [
35 "sha256=7eb618c518816a81adf2c601feea911a98dfc229f7006dcc2768b932709768aa"
36 "md5=4524e7c290530d4243e0e9429fb3d224"
37 ]
38}