A repository of opam repositories, for use by oi
0

Configure Feed

Select the types of activity you want to include in your feed.

1opam-version: "2.0" 2synopsis: "Decode and encode tar format files using Eio" 3description: """\ 4tar is a library to read and write tar files with an emphasis on 5streaming. This library uses Eio to provide a portable tar library.""" 6maintainer: [ 7 "Reynir Björnsson <reynir@reynir.dk>" 8 "dave@recoil.org" 9 "Thomas Gazagnaire <thomas@gazagnaire.org>" 10] 11authors: [ 12 "Dave Scott" 13 "Thomas Gazagnaire" 14 "David Allsopp" 15 "Antonin Décimo" 16 "Reynir Björnsson" 17 "Hannes Mehnert" 18] 19license: "ISC" 20tags: [ 21 "org:blacksun" "org:xapi-project" "org:mirage" "codec" "storage" "eio" 22] 23homepage: "https://github.com/mirage/ocaml-tar" 24doc: "https://mirage.github.io/ocaml-tar/" 25bug-reports: "https://github.com/mirage/ocaml-tar/issues" 26depends: [ 27 "dune" {>= "3.21"} 28 "ocaml" {>= "5.00.0"} 29 "cstruct" 30 "optint" 31 "eio" {>= "1.1"} 32 "nox-tar" {= version} 33 "mdx" {with-test} 34 "odoc" {with-doc} 35] 36build: [ 37 ["dune" "subst"] {dev} 38 [ 39 "dune" 40 "build" 41 "-p" 42 name 43 "-j" 44 jobs 45 "@install" 46 "@runtest" {with-test} 47 "@doc" {with-doc} 48 ] 49] 50dev-repo: "git+https://tangled.org/gazagnaire.org/ocaml-tar" 51url { 52 src: 53 "git+https://tangled.org/gazagnaire.org/ocaml-tar#573a8b87a62c9645b1b949ea5beb9b46583d628d" 54} 55x-d10-archive: 56 "f9b5a069eb016eecf1ac5914574745ae24c9329b8cf822ee7fa60182c02f7472" 57x-maintenance-intent: ["(latest)"] 58x-oi-source-url: "git+https://tangled.org/gazagnaire.org/ocaml-tar"