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.1.0"}
25 "checkseum" {>= "0.3.2"}
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 "crowbar" {with-test & >= "0.2"}
33 "rresult" {with-test}
34]
35url {
36 src:
37 "https://github.com/mirage/decompress/releases/download/v1.4.2/decompress-v1.4.2.tbz"
38 checksum: [
39 "sha256=822f125b46c87f4a902c334db8c86d4d5f33ebe978e93c40351a4d3269b95225"
40 "sha512=9cb82615923a5fffc5c8dce1d9361a467e35e91092c25c98f5afda8f4226059c59eb695c55e63adf92d766c7747e15df186386bcaeb399497dd1ae5b024c09fa"
41 ]
42}
43x-commit-hash: "e65836aa077ff120354a7de63cfea52095a7ebd3"