packages feed

haskell-postgis-0.1.0.2: haskell-postgis.cabal

-- Initial haskell-postgis.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                haskell-postgis
version:             0.1.0.2
synopsis:            A haskell library for PostGIS geometry types.
description:         A collection of types and parsers to use with the PostGIS extesion to PostgreSQL.
license:             MIT
license-file:        LICENSE
author:              Peter
maintainer:          pfrance@gmail.com
-- copyright:           
category:            Database
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  -- exposed-modules:     
  -- other-modules:       
  -- other-extensions:    
  build-depends:
        base   >= 4.4 && <=5.0
      , vector
      , binary
      , bytestring-lexing 
      , cpu
      , mtl
      , data-binary-ieee754
      , text
      , bytestring
      , placeholders 
      , aeson  
      , unordered-containers
  hs-source-dirs: src     
  default-language:    Haskell2010
  exposed-modules: 
      Database.Postgis
    , Database.Postgis.Geometry
    , Database.Postgis.Serialize
    , Database.Postgis.JSON

test-suite tests
  type: 
      exitcode-stdio-1.0
  hs-source-dirs: tests  
  main-is: Spec.hs
  default-language:    Haskell2010
  other-modules:         GeoSpec
  build-depends:
      base >= 4.4  && <=5.0
    , hspec >= 2.1
    , haskell-postgis
    , vector
    , binary
    , bytestring-lexing 
    , cpu
    , mtl
    , data-binary-ieee754
    , text
    , bytestring
    , placeholders 
    , aeson  
    , unordered-containers

source-repository head
  type:     git
  location: https://github.com/ewestern/haskell-postgis