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