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