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.03.0"} 20 "dune" 21 "base-bytes" 22 "base-bigarray" 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.0/decompress-v0.9.0.tbz" 35 checksum: [ 36 "sha256=70dd782b258a51a37c3971b9bd96c656b161876d781e168a626e9bb437833e3b" 37 "sha512=34033405c8dca30f67c39cad8f50875e255644d0e0b88019091d59932aaf90d87445070228291b1d3d1c07a98ce97aeca11554daf1a8f3b04d043b4f6c1ab83c" 38 ] 39} 40available: [ arch != "s390x" ]