this repo has no description
1opam-version: "2.0" 2homepage: "https://issuu.github.io/ocaml-mmdb" 3dev-repo: "git+https://github.com/issuu/ocaml-mmdb.git" 4bug-reports: "https://github.com/issuu/ocaml-mmdb/issues" 5doc: "https://issuu.github.io/ocaml-mmdb/" 6license: "Apache-2.0" 7maintainer: "Team Platypus <platypus@issuu.com>" 8build: [["dune" "build" "-p" name "-j" jobs]] 9run-test: [["dune" "runtest" "-p" name "-j" jobs]] 10depends: [ 11 "alcotest" {with-test & >= "0.8.5"} 12 "base" {>= "v0.10"} 13 "base" {with-test & < "v0.14"} 14 "conf-libmaxminddb" 15 "ctypes" {>= "0.14"} 16 "ctypes-foreign" {>= "0.4"} 17 "dune" {>= "1.6"} 18 "ocaml" {>= "4.04.1"} 19 "ppx_deriving" {build & >= "4.2"} 20 "ppx_let" {build & >= "v0.10"} 21] 22synopsis: "Binding to the MaxMind DB library for GeoIP lookups" 23description: """ 24mmdb binds to the official MaxMind DB C library and allows looking up IPs to 25their location. 26 27It supports both the GeoLite2 dataset published by MaxMind under a permissive 28Creative Commons Attribution-ShareAlike 4.0 International License as well as 29the proprietary database offered by MaxMind. 30 31Unlike other bindings this one uses the ctypes stub generation so it should be 32less prone to leaking memory. 33""" 34authors: "Martin Slota <msl@issuu.com>" 35url { 36 src: 37 "https://github.com/issuu/ocaml-mmdb/releases/download/0.1.0/mmdb-0.1.0.tbz" 38 checksum: [ 39 "sha256=503fc066886bcaeb1526c38902e06e53b887c03cbfadf4103b8c573850ea8ed6" 40 "md5=e879d2724eb996b372bc567014f8b18b" 41 ] 42}