packages feed

postgresql-config-0.0.1: postgresql-config.cabal

name:                postgresql-config
version:             0.0.1

synopsis:            Types for easy adding postgresql configuration to your program

license:             BSD3
license-file:        LICENSE
author:              Aleksey Uimanov
maintainer:          s9gf4ult@gmail.com

category:            Database
build-type:          Simple
cabal-version:       >=1.10

extra-source-files: examples/Main.hs
                  , examples/pgconfig.yml
                  , README.md

homepage: https://bitbucket.org/s9gf4ult/postgresql-config
source-repository head
  type: git
  location: git@bitbucket.org:s9gf4ult/postgresql-config.git

library
  hs-source-dirs:    src
  default-language:  Haskell2010

  default-extensions: RecordWildCards
                    , DeriveDataTypeable
                    , DeriveGeneric
                    , FlexibleContexts
                    , OverloadedStrings

  build-depends:     base >=4.7 && <4.8
                   , aeson
                   , bytestring
                   , monad-control
                   , mtl
                   , postgresql-simple
                   , resource-pool
                   , time

  exposed-modules:   Database.PostgreSQL.Config