-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhipchat.cabal
69 lines (67 loc) · 2.56 KB
/
hipchat.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: hipchat
version: 0.1.0.0
synopsis: Bindings for Atlassian HipChat's REST API and AddOn API
homepage: https://github.com/mjhopkins/hipchat
bug-reports: https://github.com/mjhopkins/hipchat/issues
license: BSD3
license-file: LICENSE
author: Mark Hopkins
maintainer: [email protected]
copyright: Mark Hopkins
category: Chat, API, Web
build-type: Simple
stability: experimental
extra-source-files: README.md CHANGELOG.md
cabal-version: >=1.10
description:
Atlassian <https://www.hipchat.com> is a web service for chat and messaging.
.
This package supplies Haskell bindings to the HipChat REST API, and also
types and functions to help you write a HipChat add-on (bot).
.
Built with <http://hackage.haskell.org/package/servant Servant>.
library
hs-source-dirs: src
exposed-modules: HipChat
, HipChat.Types
, HipChat.Auth
, HipChat.Auth.Types
, HipChat.API.Rooms
, HipChat.API.Capabilities
, HipChat.API.Types
, HipChat.AddOn.Capabilities
, HipChat.AddOn.Webhooks
, HipChat.AddOn.Registration
, HipChat.AddOn.Types
other-modules: Control.Lens.AsText
, HipChat.Util
, HipChat.Auth.Token
, HipChat.AddOn.Types.AuthenticationMethod
, HipChat.AddOn.Types.Icon
, HipChat.AddOn.Types.Name
, HipChat.AddOn.Types.RoomEvent
, HipChat.AddOn.Dialog
, HipChat.AddOn.Glance
, HipChat.Types.Key
, HipChat.AddOn.WebPanel
, HipChat.Types.URL
build-depends: base >= 4.7 && < 5
, aeson
, attoparsec
, blaze-builder
, bytestring-builder
, data-default
, http-api-data
, http-types
, lens
, network-uri
, servant
, servant-client
, text
, time
, utf8-string
default-language: Haskell2010
ghc-options: -Wall
source-repository head
type: git
location: https://github.com/mjhopkins/hipchat