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 "optint" {>= "0.0.3"} 24 "checkseum" {>= "0.1.1"} 25 "bigstringaf" {with-test} 26 "alcotest" {with-test} 27 "hxd" {with-test & < "0.3.0"} 28 "fmt" 29] 30url { 31 src: 32 "https://github.com/mirage/decompress/releases/download/v1.0.0/decompress-v1.0.0.tbz" 33 checksum: [ 34 "sha256=34a04176a42955ce529a1b57e8b225e7cf63680e49dd8ad05b3fe463bc7863bd" 35 "sha512=cfc300cbf620563453ca166e5a53fde3317c8a24ce3010a5cdee080f51cca26c67f658e57bd8feee582c7dcb459a692010b90907ae2e9ba9fe494d5da5d88c13" 36 ] 37} 38available: [ arch != "s390x" ]