packages feed

hipchat-hs-0.0.2: hipchat-hs.cabal

name:                hipchat-hs
version:             0.0.2
synopsis:            Hipchat API bindings in Haskell
description:         Hipchat API bindings in Haskell 
license:             BSD3
license-file:        LICENSE
author:              Oswyn Brent <oztastic703@gmail.com>
maintainer:          oztastic703@gmail.com
copyright:           Oswyn Brent 2015
category:            Web
build-type:          Simple
cabal-version:       >=1.18

source-repository HEAD
  type: git
  location: https://github.com/oswynb/hipchat-hs

library
  exposed-modules:     Network.Hipchat.Client
                       Network.Hipchat.Types.API
                       Network.Hipchat.Types.Common
                       Network.Hipchat.Types.Extensions
                       Network.Hipchat.Types.Rooms
                       Network.Hipchat.Types.Rooms.CreateRoomRequest
                       Network.Hipchat.Types.Rooms.CreateRoomResponse
                       Network.Hipchat.Types.Rooms.CreateWebhookRequest
                       Network.Hipchat.Types.Rooms.CreateWebhookResponse
                       Network.Hipchat.Types.Rooms.GetAllMembersResponse
                       Network.Hipchat.Types.TokenRequest
                       Network.Hipchat.Types.TokenResponse
                       Network.Hipchat.Types.User
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >= 4.8 && < 4.9
                     , aeson
                     , async
                     , bytestring
                     , either
                     , lens
                     , servant
                     , servant-client
                     , split
                     , string-conversions
                     , text
                     , time
  hs-source-dirs:      lib
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010