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
|
Name: hsbot
Version: 0.4.18
Cabal-version: >=1.2
Synopsis: A multipurposes IRC bot
Description:
hsbot is a multi-purpose bot, written slowly, as long as I learned more
haskell. It features IRC integration and some plugins. I tried to design
a bot architecture as modular and as flexible as possible.
Homepage: http://hsbot.adyxax.org/
License: BSD3
License-file: LICENSE
Author: Julien Dessaux
Maintainer: judessaux@gmail.com
Copyright: Copyright (c) 2010 Julien Dessaux
Category: Hsbot
Build-type: Simple
Library
ghc-options: -Wall
exposed-modules: Hsbot
Hsbot.Config
Hsbot.Core
Hsbot.Message
Hsbot.Plugin
Hsbot.Plugin.Admin
Hsbot.Plugin.Duck
Hsbot.Plugin.Ping
Hsbot.Plugin.Quote
Hsbot.Types
Hsbot.Utils
Extensions: DeriveDataTypeable FlexibleContexts ScopedTypeVariables
Build-depends: acid-state,
base >= 4.1 && < 5,
bytestring,
certificate,
containers,
crypto-api,
cryptocipher,
dyre,
hslogger,
irc,
mtl,
network,
parsec,
random,
safecopy,
tls >= 0.8.1,
tls-extra >= 0.4.0,
time,
utf8-string,
xdg-basedir
Executable hsbot
Main-is: Main.hs
Ghc-options: -Wall
Extensions: DeriveDataTypeable FlexibleContexts ScopedTypeVariables
Build-depends: base >= 4.1 && < 5
|