-
Notifications
You must be signed in to change notification settings - Fork 1
/
lambdabot-zulip.cabal
71 lines (62 loc) · 1.44 KB
/
lambdabot-zulip.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
70
71
name: lambdabot-zulip
version: 0.1.0
license: MIT
copyright: 2017 Niklas Hambüchen <mail@nh2.me>
author: Niklas Hambüchen <mail@nh2.me>
maintainer: Niklas Hambüchen <mail@nh2.me>
category: Web
build-type: Simple
tested-with: GHC==8.4.3
cabal-version: >= 1.8
homepage: https://github.com/nh2/lambdabot-zulip
bug-Reports: https://github.com/nh2/lambdabot-zulip/issues
synopsis: Lambdabot for Zulip Chat
description:
Integrates lambdabot with Zulip Chat.
extra-source-files:
README.md
example-settings/settings.yaml
source-repository head
type: git
location: git://github.com/nh2/lambdabot-zulip.git
library
exposed-modules:
Web.Zulip.Lambdabot
hs-source-dirs:
src
build-depends:
base >= 4 && < 5
, containers
, hint
, hzulip
, mueval
, optparse-applicative
, say
, text
, yaml
ghc-options:
-Wall
executable lamdabot-zulip-server
hs-source-dirs:
app/lambdabot-zulip-server
main-is:
Main.hs
build-depends:
base >= 4 && < 5
, lambdabot-zulip
ghc-options:
-Wall -threaded -with-rtsopts=-N
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs:
test
main-is:
Main.hs
build-depends:
base >= 4 && < 5
, lambdabot-zulip
, hspec >= 1.3.0.1
, HUnit >= 1.2
, text
ghc-options:
-Wall -threaded -with-rtsopts=-N