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" & < "1.4.0"} 12 "base" {>= "v0.10"} 13 "conf-libmaxminddb" 14 "ctypes" {>= "0.14"} 15 "ctypes-foreign" {>= "0.4"} 16 "dune" {>= "1.6"} 17 "ocaml" {>= "4.04.1"} 18 "ppx_deriving" {>= "4.2"} 19 "ppx_let" {>= "v0.10"} 20] 21synopsis: "Binding to the MaxMind DB library for GeoIP lookups" 22description: """ 23mmdb binds to the official MaxMind DB C library and allows looking up IPs to 24their location. 25 26It supports both the GeoLite2 dataset published by MaxMind under a permissive 27Creative Commons Attribution-ShareAlike 4.0 International License as well as 28the proprietary database offered by MaxMind. 29 30Unlike other bindings this one uses the ctypes stub generation so it should be 31less prone to leaking memory. 32""" 33authors: "Martin Slota <msl@issuu.com>" 34url { 35 src: 36 "https://github.com/issuu/ocaml-mmdb/releases/download/0.3.0/mmdb-0.3.0.tbz" 37 checksum: [ 38 "sha256=c35a78d505e17d8a35840e17a8047d9fba32dfa72663d39aecebf5d8196826e5" 39 "sha512=31b0ca40d62d4232846a9b3f04bf257c5bc71ada5e677155d7654636ff7e557d4fe53bdb38d8b3f41540f2caef73e7943ccc35ad501225b62c5e70b4398e1702" 40 ] 41}