This repository has been archived by the owner on Jun 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
nairobi-bot.cabal
98 lines (91 loc) · 3.35 KB
/
nairobi-bot.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: nairobi-bot
version: 0.0.0.1
synopsis: IRC bot written in haskell.
description: Please see README.md
homepage: http://github.com/githubuser/nairobi-bot#readme
license: GPL-3
license-file: LICENSE
author: Njagi Mwaniki
maintainer: [email protected]
copyright: 2015, Njagi Mwaniki
category: IRC
build-type: Simple
extra-source-files: config.yaml
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Bot
, Bot.Types
, Bot.URL
, Bot.Echo
, Bot.Data.Config
, Bot.Data.Network
other-modules: Bot.Reputation
, Bot.Seen
, Bot.Wolfram
, Bot.NowPlaying
, Bot.Define
, Bot.Help
, Bot.Ping
, Bot.GIF
, Bot.Factoid
build-depends: aeson >= 0.11 && < 0.13
, auto >= 0.4 && < 0.6
, base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.12
, cereal >= 0.4 && < 0.6
, containers >= 0.5 && < 0.6
, directory >= 1.2 && < 3.0
, http-client >= 0.4 && < 0.6
, lens >= 4.13 && < 4.16
, network >= 2.6 && < 2.7
, random >= 1.0 && < 2.0
, simpleirc >= 0.3.1 && < 0.5
, tagsoup >= 0.13 && < 0.15
, text >= 1.2 && < 1.3
, time >= 1.5 && < 1.7
, transformers >= 0.4 && < 0.6
, unordered-containers >= 0.2 && < 0.4
, vector >= 0.10 && < 0.12
, wreq >= 0.4 && < 0.6
, http-types >= 0.9 && < 1.1
, yaml >= 0.8 && < 0.10
default-language: Haskell2010
executable nairobi-bot
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base
, nairobi-bot
default-language: Haskell2010
test-suite nairobi-bot-test
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Spec.hs
other-modules: BotSpec
, Bot.TypesSpec
, Bot.URLSpec
, Bot.EchoSpec
, Bot.Data.ConfigSpec
, Bot.Data.NetworkSpec
build-depends: QuickCheck >= 2.8 && < 3.0
, hspec >= 2.2 && < 3.0
, aeson
, auto
, base
, bytestring
, containers
, nairobi-bot
, simpleirc
, wreq
, lens
, http-client
, http-types
, time
, text
, yaml
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall -fwarn-tabs
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/githubuser/nairobi-bot