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