this repo has no description
1opam-version: "2.0" 2maintainer: "Romain Calascibetta <romain.calascibetta@gmail.com>" 3authors: "Romain Calascibetta <romain.calascibetta@gmail.com>" 4homepage: "https://github.com/mirage/decompress" 5bug-reports: "https://github.com/mirage/decompress/issues" 6dev-repo: "git+https://github.com/mirage/decompress.git" 7doc: "https://mirage.github.io/decompress/" 8license: "MIT" 9synopsis: "Implementation of Zlib and GZip in OCaml" 10description: """Decompress is an implementation of Zlib and GZip in OCaml 11 12It provides a pure non-blocking interface to inflate and deflate data flow. 13""" 14 15build: [ "dune" "build" "-p" name "-j" jobs ] 16run-test: [ "dune" "runtest" "-p" name "-j" jobs ] {ocaml:version < "5.0"} 17 18depends: [ 19 "ocaml" {>= "4.07.0"} 20 "dune" {>= "2.8.0"} 21 "base-bytes" 22 "bigarray-compat" 23 "cmdliner" {>= "1.0.0"} 24 "optint" {>= "0.0.5"} 25 "checkseum" {>= "0.2.0"} 26 "bigstringaf" {with-test} 27 "alcotest" {with-test} 28 "ctypes" {with-test & >= "0.18.0"} 29 "fmt" {with-test} 30 "camlzip" {>= "1.10" & with-test} 31 "base64" {>= "3.0.0" & with-test} 32] 33x-commit-hash: "6637d0fb0e0d4f9ad562924d6b04a813c6bcdd64" 34url { 35 src: 36 "https://github.com/mirage/decompress/releases/download/v1.4.0/decompress-v1.4.0.tbz" 37 checksum: [ 38 "sha256=d1669e07446d73dd5e16f020d4a1682abcbb1b7a1e3bf19b805429636c26a19b" 39 "sha512=808e278640ab84b8ead7c5b7d22b70e3809255e37cc80a595cc58dd4974e5240f70307f048041ab1d8678826ce041da4f186179aa7ebbba5e7cfacaaf054f3e6" 40 ] 41} 42available: [ arch != "s390x" ]