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}
15 "result"
16]
17build:[[
18 "ocaml" "pkg/pkg.ml" "build"
19 "--pinned" "%{pinned}%" ]]
20synopsis: "Result value combinators for OCaml"
21description: """
22Rresult is an OCaml module for handling computation results and errors
23in an explicit and declarative manner, without resorting to
24exceptions. It defines combinators to operate on the `result` type
25available from OCaml 4.03 in the standard library.
26
27Rresult depends on the compatibility `result` package and is
28distributed under the ISC license."""
29url {
30 src: "http://erratique.ch/software/rresult/releases/rresult-0.5.0.tbz"
31 checksum: [
32 "sha256=15faf4a755eb7df876e9cb77e608a98fcb4eabd023450e77ba082bd86067bef7"
33 "md5=2aa904e5f1707903da68d80d71c85637"
34 ]
35}