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 in OCaml" 10description: """Decompress is an implementation of Zlib 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 ] 17 18depends: [ 19 "ocaml" {>= "4.07.0"} 20 "dune" 21 "base-bytes" 22 "bigarray-compat" 23 "mmap" 24 "optint" 25 "checkseum" {>= "0.0.3"} 26 "camlzip" {with-test & >= "1.07"} 27 "re" {with-test & >= "1.7.2"} 28 "alcotest" {with-test} 29 "bos" {with-test} 30 "cmdliner" 31] 32url { 33 src: 34 "https://github.com/mirage/decompress/releases/download/v0.9.1/decompress-v0.9.1.tbz" 35 checksum: [ 36 "sha256=4e2fe1fc285449c5ab85e42dfe5c2bb1a9dee11c85fc8550405981a79e101814" 37 "sha512=b1ee40c92cda979bfb36aaa5d920263ccf017262af01596eca86d9dfb2d7796ca082c99e5ad46be5460936733484070168afeaa7e76df337939365f64d7b5502" 38 ] 39} 40available: [ arch != "s390x" ]