this repo has no description
1opam-version: "2.0" 2maintainer: "Zach Shipko <zachshipko@gmail.com>" 3authors: ["Zach Shipko <zachshipko@gmail.com>"] 4homepage: "https://github.com/zshipko/ocaml-bimage" 5doc: "https://zshipko.github.io/ocaml-bimage/doc" 6license: "ISC" 7dev-repo: "git+https://github.com/zshipko/ocaml-bimage.git" 8bug-reports: "https://github.com/zshipko/ocaml-bimage/issues" 9tags: ["image processing"] 10 11depends: 12[ 13 "ocaml" {>= "4.07.0"} 14 "dune" {>= "2.0"} 15] 16 17build: [ 18 ["dune" "build" "-p" name "-j" jobs] 19] 20 21synopsis: """ 22A simple, efficient image-processing library 23""" 24 25description: """ 26An image processing library for OCaml providing efficient, composable operations. 27Additionally, bimage supports most types supported by Bigarray. 28""" 29url { 30 src: 31 "https://github.com/zshipko/ocaml-bimage/releases/download/v0.2.1/bimage-v0.2.1.tbz" 32 checksum: [ 33 "sha256=edc83c7f2749277376a070df72e7b654b963e85f630ec56353b4ea53445d5e3a" 34 "sha512=2d92eb3e3518910fe16d1f4cb4b5b75dd49cfaf3fd06c2f6dbcf2dea1ff5457f85978649042e3ada0978fb149cfa16da2da910693b0cb1390d48174bcb7b8643" 35 ] 36}