this repo has no description
1opam-version: "2.0"
2license: "MIT"
3synopsis: "Library for writing IRC bots in OCaml and a collection of plugins"
4authors: ["Armael" "Enjolras" "c-cube"]
5maintainer: "c-cube"
6build: [
7 ["dune" "build" "-p" name "-j" jobs]
8 ["dune" "build" "@doc" "-p" name] {with-doc}
9 ["dune" "runtest" "-p" name "-j" jobs] {with-test}
10]
11depends: [
12 "dune" { >= "1.1" }
13 "base-unix"
14 "lwt"
15 "irc-client" { >= "0.7.0"}
16 "irc-client-lwt"
17 "irc-client-lwt-ssl"
18 "logs" {>= "0.5.0"}
19 "yojson" { >= "1.7" }
20 "containers" { >= "3.0" & < "4.0" }
21 "ISO8601"
22 "stringext"
23 "re" { >= "1.7.2" & < "2.0" }
24 "odoc" {with-doc}
25 "ocaml" { >= "4.08.0" }
26]
27depopts: [
28 "iter"
29]
30tags: [ "irc" "bot" "factoids" ]
31homepage: "https://github.com/c-cube/calculon"
32bug-reports: "https://github.com/c-cube/calculon/issues"
33dev-repo: "git+https://github.com/c-cube/calculon.git"
34url {
35 src: "https://github.com/c-cube/calculon/archive/v0.7.tar.gz"
36 checksum: [
37 "md5=6bb91cdc5cd1b5958144faf9b4ae27c3"
38 "sha512=40fe8bdf5389fdb85869e41c24dbbbaafb8f07d026fcb7db2c2a94c1072a6d47a00708b0b0909e509b40325481198e6e45a4a205c92e090bf47eeccd4fbf99ab"
39 ]
40}