summaryrefslogtreecommitdiff
path: root/hsbot.cabal
diff options
context:
space:
mode:
authorJulien Dessaux2011-04-13 20:15:55 +0200
committerJulien Dessaux2011-04-13 20:15:55 +0200
commitff07633fb8f81577ffec409cbf0a3c7361990f6c (patch)
tree5021a2e13f878c6b29ad3ec835f694d0726b7e9c /hsbot.cabal
parentRegressed from parsec3 to parsec2 to solve a cabal install weird dependency p... (diff)
downloadhsbot-ff07633fb8f81577ffec409cbf0a3c7361990f6c.tar.gz
hsbot-ff07633fb8f81577ffec409cbf0a3c7361990f6c.tar.bz2
hsbot-ff07633fb8f81577ffec409cbf0a3c7361990f6c.zip
Began a big refactoring/rewriting (again)
Diffstat (limited to '')
-rw-r--r--hsbot.cabal (renamed from HsbotIrcBot/hsbot-irc.cabal)43
1 files changed, 27 insertions, 16 deletions
diff --git a/HsbotIrcBot/hsbot-irc.cabal b/hsbot.cabal
index d1f98ee..e1654b4 100644
--- a/HsbotIrcBot/hsbot-irc.cabal
+++ b/hsbot.cabal
@@ -1,7 +1,7 @@
-Name: hsbot-irc
-Version: 0.3.11
+Name: hsbot
+Version: 0.4
Cabal-version: >=1.2
-Synopsis: The irc part of a multi-purposes bot.
+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
@@ -16,22 +16,33 @@ Category: Hsbot
Build-type: Simple
-Executable hsbot-irc
- Main-is: Main.hs
- Ghc-options: -Wall
+Library
+ ghc-options: -Wall
+ exposed-modules: Hsbot
+ --Hsbot.Command
+ Hsbot.Config
+ Hsbot.Core
+ --Hsbot.Plugin
+ Hsbot.Types
+ Hsbot.Utils
Extensions: DeriveDataTypeable FlexibleContexts ScopedTypeVariables
Build-depends: base >= 4.1 && < 5,
- ConfigFile,
+ bytestring,
+ certificate,
containers,
- directory,
- filepath,
- haskell98,
- MissingH,
+ cryptocipher,
+ dyre,
+ hslogger,
+ irc,
mtl,
network,
- parsec,
- random,
- text,
- time,
- unix
+ tls >= 0.5.1,
+ tls-extra >= 0.1.2
+
+
+Executable hsbot
+ Main-is: Main.hs
+ Ghc-options: -Wall
+ Extensions: DeriveDataTypeable FlexibleContexts ScopedTypeVariables
+ Build-depends: base >= 4.1 && < 5