packages feed

hailgun-0.1.0.1: hailgun.cabal

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

-- The name of the package.
name:                hailgun

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.1

-- A short (one-line) description of the package.
synopsis:            Mailgun REST api interface for Haskell.

-- A longer description of the package.
description:         Mailgun is an online service that sends emails. It is a great point of
                     integration for many SaaS services and this Haskell library cleanly interfaces
                     with Mailgun so that you can send emails from your Haskell applications.

-- The license under which the package is released.
license:             MIT

-- The file containing the license text.
license-file:        LICENSE

-- The package author(s).
author:              Robert Massaioli

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          robertmassaioli@gmail.com

-- A copyright notice.
copyright:           (c) 2014 Robert Massaioli

category:            Network

build-type:          Simple

-- Extra files to be distributed with the package, such as examples or a 
-- README.
extra-source-files:  README.markdown

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.10


library
   exposed-modules:     Mail.Hailgun
   build-depends:       base >=4.6 && <4.7
                        , bytestring >= 0.9 && <= 0.11
                        , aeson == 0.7.*
                        , text == 0.11.*
                        , transformers == 0.3.*
                        , http-client == 0.3.*
                        , http-client-tls == 0.2.*
                        , email-validate ==2.0.*
                        , http-types == 0.8.*

   ghc-options:         -W
   default-language:    Haskell2010