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.04.2" & < "4.13"} 10 "dune" {>= "1.0"} 11 "tar" {>= "1.0.0" & < "2.0.0"} 12 "cstruct" {>= "1.9.0"} 13 "re" {>= "1.7.2"} 14 "result" 15 "mirage-block-unix" {with-test & >= "2.5.0"} 16 "mirage-types-lwt" {>= "3.0.0" & < "3.7.0"} 17 "lwt" 18 "io-page" 19 "mirage-block-unix" {with-test} 20 "io-page-unix" {with-test} 21 "ounit" {with-test} 22 "tar-unix" {with-test} 23] 24conflicts: [ 25 "mirage-types-lwt" {< "3.0.0"} 26 "mirage-kv" {>= "2.0.0"} 27] 28build: [ 29 ["dune" "subst"] {dev} 30 ["dune" "build" "-p" name "-j" jobs] 31 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 32] 33dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 34synopsis: "Read and write tar format files via MirageOS interfaces" 35description: """ 36tar is a simple library to read and write tar files with an emphasis on 37streaming. This library is functorised over external OS dependencies 38to facilitate embedding within MirageOS. 39""" 40url { 41 src: 42 "https://github.com/mirage/ocaml-tar/releases/download/v1.0.1/tar-v1.0.1.tbz" 43 checksum: [ 44 "sha256=e7a5bb9a19627877b447ca526374083a7e2229fba8aede7e82226a6d03032a0f" 45 "md5=0018b647a829299f0bf88a85c80b8a54" 46 ] 47} 48available: [ arch != "arm32" & arch != "x86_32" ]