this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/rresult" 5doc: "http://erratique.ch/software/rresult" 6dev-repo: "git+http://erratique.ch/repos/rresult.git" 7bug-reports: "https://github.com/dbuenzli/rresult/issues" 8tags: [ "result" "error" "declarative" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.01.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.7.5"} 15 "result" 16] 17build: ["ocaml" "pkg/pkg.ml" "build" "--pinned" "%{pinned}%"] 18synopsis: "Result value combinators for OCaml" 19description: """ 20Rresult is an OCaml module for handling computation results and errors 21in an explicit and declarative manner, without resorting to 22exceptions. It defines combinators to operate on the `result` type 23available from OCaml 4.03 in the standard library. 24 25Rresult depends on the compatibility `result` package and is 26distributed under the ISC license.""" 27url { 28 src: "http://erratique.ch/software/rresult/releases/rresult-0.4.0.tbz" 29 checksum: [ 30 "sha256=b2a3e0a7ed59963d1f868a2201e730bedf86cffdec836026878dc151d7e74cb5" 31 "md5=bee49d7098f94dca00eb2fdba1986885" 32 ] 33}