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 "cmdliner" {>= "1.1.0"}
22 "optint" {>= "0.1.0"}
23 "checkseum" {>= "0.2.0"}
24 "bigstringaf" {with-test}
25 "alcotest" {with-test}
26 "ctypes" {with-test & >= "0.18.0"}
27 "fmt" {with-test & >= "0.8.7"}
28 "camlzip" {>= "1.10" & with-test}
29 "base64" {>= "3.0.0" & with-test}
30 "crowbar" {with-test & >= "0.2"}
31 "rresult" {with-test}
32]
33url {
34 src:
35 "https://github.com/mirage/decompress/releases/download/v1.5.1/decompress-1.5.1.tbz"
36 checksum: [
37 "sha256=cbf395a23171864b09410befb52dfc485ed99cc110840b700decb4212c32a4fe"
38 "sha512=a96b74d3f8f4d7b110bea94988ba897dab8c63f50751bffa498ad5fc2a7fc806b7fc20b90926394b9780f5c2ac93e9a6c7447c7b38366e43b3f5afff3dc4dcc8"
39 ]
40}
41x-commit-hash: "fbc17adb4290cbe12ce2fbefb63834b004c43053"