summaryrefslogtreecommitdiff
path: root/HsbotIrcBot/hsbot-irc.cabal
diff options
context:
space:
mode:
authorJulien Dessaux2010-08-01 00:22:58 +0200
committerJulien Dessaux2010-08-01 00:22:58 +0200
commit6888950b606430f3779507bf8106df168a52d0f2 (patch)
treef99b81ef1ede28027a3aba588d10aca80d6129e9 /HsbotIrcBot/hsbot-irc.cabal
parentGot rid of the pseudo dynamic starting stuff, wrote a decent CLI parameters h... (diff)
downloadhsbot-6888950b606430f3779507bf8106df168a52d0f2.tar.gz
hsbot-6888950b606430f3779507bf8106df168a52d0f2.tar.bz2
hsbot-6888950b606430f3779507bf8106df168a52d0f2.zip
Added the cli parser and a config file handler for hsbot-irc.
Diffstat (limited to '')
-rw-r--r--HsbotIrcBot/hsbot-irc.cabal29
1 files changed, 29 insertions, 0 deletions
diff --git a/HsbotIrcBot/hsbot-irc.cabal b/HsbotIrcBot/hsbot-irc.cabal
new file mode 100644
index 0000000..c19038f
--- /dev/null
+++ b/HsbotIrcBot/hsbot-irc.cabal
@@ -0,0 +1,29 @@
+Name: hsbot-irc
+Version: 0.3
+Cabal-version: >=1.2
+Synopsis: The irc part of a multi-purposes 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
+
+
+Executable hsbot-irc
+ Main-is: Main.hs
+ Ghc-options: -Wall
+ Extensions: DeriveDataTypeable ScopedTypeVariables
+ Build-depends: base >= 4.1 && < 5,
+ ConfigFile,
+ MissingH,
+ mtl,
+ network,
+ unix
+