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" 6doc: "https://mirage.github.io/ocaml-tar/" 7bug-reports: "https://github.com/mirage/ocaml-tar/issues" 8depends: [ 9 "ocaml" {>= "4.03.0"} 10 "dune" {>= "1.0"} 11 "tar" {>= "1.0.0" & < "2.0.0"} 12 "cstruct" {>= "1.9.0"} 13 "cstruct-lwt" 14 "re" {>= "1.7.2"} 15 "result" 16 "lwt" 17] 18build: [ 19 ["dune" "subst"] {dev} 20 ["dune" "build" "-p" name "-j" jobs] 21] 22dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 23synopsis: "Decode and encode tar format files from Unix" 24description: """ 25tar is a simple library to read and write tar files with an emphasis on 26streaming. This library provides a Unix or Windows compatible interface. 27""" 28url { 29 src: 30 "https://github.com/mirage/ocaml-tar/releases/download/v1.0.1/tar-v1.0.1.tbz" 31 checksum: [ 32 "sha256=e7a5bb9a19627877b447ca526374083a7e2229fba8aede7e82226a6d03032a0f" 33 "md5=0018b647a829299f0bf88a85c80b8a54" 34 ] 35}