this repo has no description
1opam-version: "2.0" 2maintainer: "Dario Teixeira <dario.teixeira@nleyten.com>" 3authors: ["Dario Teixeira <dario.teixeira@nleyten.com>"] 4homepage: "http://ocaml-bitcoin.forge.ocamlcore.org/" 5bug-reports: "https://github.com/darioteixeira/ocaml-bitcoin/issues" 6dev-repo: "git+https://github.com/darioteixeira/ocaml-bitcoin.git" 7license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8build: [ 9 ["./configure" "--prefix" prefix 10 "--docdir" "%{doc}%/bitcoin" 11 "--%{ocsigenserver:enable}%-ocsigen" 12 "--%{ocamlnet:enable}%-ocamlnet" 13 "--%{cohttp:enable}%-cohttp" 14 "--%{ocurl:enable}%-ocurl" 15 ] 16 [make] 17 [make "doc"] 18] 19install: [[make "install"]] 20remove: [["ocamlfind" "remove" "bitcoin"]] 21depends: [ 22 "ocaml" {< "5.0"} 23 "yojson" {< "2.0.0"} 24 "cryptokit" 25 "ocamlbuild" {build} 26] 27depopts: [ 28 "ocsigenserver" 29 "ocamlnet" 30 "cohttp" 31 "ocurl" 32] 33conflicts: [ 34 "ocamlnet" {< "4.0.0"} 35 "cohttp" {>= "0.99.0"} 36 "lwt" {>= "4.0.0"} 37] 38synopsis: 39 "Library offering an OCaml interface to the official Bitcoin client API" 40flags: light-uninstall 41url { 42 src: "https://github.com/darioteixeira/ocaml-bitcoin/archive/v2.0.tar.gz" 43 checksum: [ 44 "sha256=3c4a197e56daf6592bb9c4638adad409352ef8fa5aec0c212c4df5e3283a9b53" 45 "md5=3e9f640e64edac79a7d080f0f384800e" 46 ] 47}