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 RFC1951 in OCaml" 10description: """This package provide an implementation of RFC1951 in OCaml. 11 12We provide 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 "optint" 24 "checkseum" {>= "0.0.3"} 25 "decompress" {= version} 26 "camlzip" {with-test} 27 "re" {with-test & >= "1.7.2"} 28 "alcotest" {with-test} 29] 30url { 31 src: 32 "https://github.com/mirage/decompress/releases/download/v0.9.1/decompress-v0.9.1.tbz" 33 checksum: [ 34 "sha256=4e2fe1fc285449c5ab85e42dfe5c2bb1a9dee11c85fc8550405981a79e101814" 35 "sha512=b1ee40c92cda979bfb36aaa5d920263ccf017262af01596eca86d9dfb2d7796ca082c99e5ad46be5460936733484070168afeaa7e76df337939365f64d7b5502" 36 ] 37}