packages feed

postgresql-config-0.0.2: postgresql-config.cabal

name:                postgresql-config
version:             0.0.2

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: CHANGELOG.md
                  , README.md
                  , examples/Main.hs
                  , examples/pgconfig.yml

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: DeriveDataTypeable
                    , DeriveGeneric
                    , FlexibleContexts
                    , OverloadedStrings
                    , RecordWildCards

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

  exposed-modules:   Database.PostgreSQL.Config