this repo has no description
1opam-version: "2.0" 2synopsis: "Decode and encode tar format files in pure OCaml" 3description: """ 4tar is a library to read and write tar files with an emphasis on 5streaming. 6 7This is pure OCaml code, no C bindings. 8""" 9maintainer: ["Reynir Björnsson <reynir@reynir.dk>" "dave@recoil.org"] 10authors: [ 11 "Dave Scott" 12 "Thomas Gazagnaire" 13 "David Allsopp" 14 "Antonin Décimo" 15 "Reynir Björnsson" 16 "Hannes Mehnert" 17] 18license: "ISC" 19tags: ["org:xapi-project" "org:mirage"] 20homepage: "https://github.com/mirage/ocaml-tar" 21doc: "https://mirage.github.io/ocaml-tar/" 22bug-reports: "https://github.com/mirage/ocaml-tar/issues" 23depends: [ 24 "dune" {>= "2.9"} 25 "ocaml" {>= "4.08.0"} 26 "decompress" {>= "1.5.1"} 27 "odoc" {with-doc} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "--promote-install-files=false" 39 "@install" 40 "@runtest" {with-test} 41 "@doc" {with-doc} 42 ] 43 ["dune" "install" "-p" name "--create-install-files" name] 44] 45dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 46x-maintenance-intent: [ "(latest)" ] 47url { 48 src: 49 "https://github.com/mirage/ocaml-tar/releases/download/v3.2.0/tar-3.2.0.tbz" 50 checksum: [ 51 "sha256=1f50437635b2da21bbef4ed22b0f4ab764901c91671cfd8e937317bf72adf1bd" 52 "sha512=dd62a7e3cd7941ea48c7f71a578fe595cdf48d83fe9d64a9d7222bb208abe9aa1ad67f985198b7818d71728105943fe305512b581ec9e76be4876b97c46d9e1e" 53 ] 54} 55x-commit-hash: "d03f2ec0ab097dc7ed18c2b1c8bd690245d9c6b4"