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" & < "5.0"} 10 "dune" {>= "1.0"} 11 "ppx_tools" {build} 12 "ppx_cstruct" {>= "3.6.0"} 13 "cstruct" {>= "1.9.0" & < "6.1.0"} 14 "re" 15] 16build: [ 17 ["dune" "subst"] {dev} 18 ["dune" "build" "-p" name "-j" jobs] 19] 20dev-repo: "git+https://github.com/mirage/ocaml-tar.git" 21synopsis: "Decode and encode tar format files in pure OCaml" 22description: """ 23tar is a simple library to read and write tar files with an emphasis on 24streaming. 25 26This is pure OCaml code, no C bindings. 27""" 28url { 29 src: 30 "https://github.com/mirage/ocaml-tar/releases/download/v1.1.0/tar-v1.1.0.tbz" 31 checksum: [ 32 "sha256=c48e4ce128058fac4ae1a0f3d2d49f42d9a736a3bf166b59f086e6e6f926018d" 33 "sha512=ea273a8fefab42624c42da9d1a02557d1c51d4d8c0d032e8d8a17e0f6866c56b3ab0b32eacb8ad788bbf6983bff36ac072353af08a730b6b26f9c45d4d4f521a" 34 ] 35}