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 "-j" jobs] {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 "sqlite3" {>= "5.0.0"}
19 "logs" {>= "0.5.0"}
20 "yojson" { >= "1.7" }
21 "containers" { >= "3.6" & < "4.0" }
22 "ptime"
23 "stringext"
24 "re" { >= "1.7.2" & < "2.0" }
25 "odoc" {with-doc}
26 "ocaml" { >= "4.08.0" }
27]
28depopts: [
29 "iter"
30]
31conflicts: [
32 "result" {< "1.5"}
33]
34tags: [ "irc" "bot" "factoids" ]
35homepage: "https://github.com/c-cube/calculon"
36bug-reports: "https://github.com/c-cube/calculon/issues"
37dev-repo: "git+https://github.com/c-cube/calculon.git"
38url {
39 src: "https://github.com/c-cube/calculon/archive/v0.8.tar.gz"
40 checksum: [
41 "md5=4d34a4d99816effb06954ea283be0e5b"
42 "sha512=b9ec29bc0fc40774075b528524bd191b4dde013465805499b6f49b9dd070b404b34364c77ef994f0bc01c9213f1f7c0a4aa749f84f8de55de810088499b29cfc"
43 ]
44}