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 ] 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 "bos" {with-test} 33 "astring" {with-test} 34] 35url { 36 src: 37 "https://github.com/mirage/decompress/releases/download/v1.5.2/decompress-1.5.2.tbz" 38 checksum: [ 39 "sha256=a8c9a6ba132514d56ad3626fbd5e79124844836010350ee161d43bb29bf5762e" 40 "sha512=1a5a935ff55ebad83682cffb9792b1b5e3a189d2df483f77856ea683706219f7c50ff14b7ab1de0c5ce90e0d779bd06ab86afb29d39461192fbbf4b3fbaf600c" 41 ] 42} 43x-commit-hash: "6d0c542923328b1fade4a0d3d4ff6a90923f1c2b"