packages feed

geoip2-0.1.0.4: geoip2.cabal

name:                geoip2
version:             0.1.0.4
synopsis:            Pure haskell interface to MaxMind GeoIP database
description:
  GeoIP2 is a haskell binding to the MaxMind GeoIP2 database.
  It parses the database according to the MaxMind DB
  specification <http://maxmind.github.io/MaxMind-DB/>, version 2
  of the specification is supported. The free geolite2 database can
  be downloaded at <http://dev.maxmind.com/geoip/geoip2/geolite2/>.
license:             BSD3
license-file:        LICENSE
author:              Ondrej Palkovsky
maintainer:          palkovsky.ondrej@gmail.com
category:            Database
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md ChangeLog.md

source-repository head
  type: git
  location: https://github.com/ondrap/geoip2

library
  exposed-modules:     Data.GeoIP2
  other-modules:       Data.GeoIP2.Fields, Data.GeoIP2.SearchTree
  build-depends:       base >=4.7 && <4.9
                     , mmap
                     , bytestring
                     , cereal
                     , text
                     , containers
                     , iproute(>=1.4.0)
                     , reinterpret-cast
  default-language:    Haskell2010
  ghc-options:         -Wall