summaryrefslogtreecommitdiff
path: root/hsbot.cabal
diff options
context:
space:
mode:
authorJulien Dessaux2010-07-03 21:26:00 +0200
committerJulien Dessaux2010-07-03 22:40:17 +0200
commit11c2c16835b3e8368be77ccc5b7ddf949021eccd (patch)
tree7733132ee370335156219ff6eb4f0ef2dbd1c8ff /hsbot.cabal
parentWrote most of the resume code for the core and the irc plugin. (diff)
downloadhsbot-11c2c16835b3e8368be77ccc5b7ddf949021eccd.tar.gz
hsbot-11c2c16835b3e8368be77ccc5b7ddf949021eccd.tar.bz2
hsbot-11c2c16835b3e8368be77ccc5b7ddf949021eccd.zip
Moved files around as a preliminary for architectural changes.
Diffstat (limited to 'hsbot.cabal')
-rw-r--r--hsbot.cabal63
1 files changed, 0 insertions, 63 deletions
diff --git a/hsbot.cabal b/hsbot.cabal
deleted file mode 100644
index fcf5533..0000000
--- a/hsbot.cabal
+++ /dev/null
@@ -1,63 +0,0 @@
-name: hsbot
-version: 0.2.1
-cabal-version: >= 1.8
-build-type: Simple
-license: BSD3
-license-file: LICENSE
-copyright: Copyright (c) 2010 Julien Dessaux
-author: Julien Dessaux
-maintainer: judessaux@gmail.com
-homepage: http://code.adyxax.org/hsbot
-bug-reports: http://code.adyxax.org/hsbot/tracker
-category: Hsbot
-synopsis: An multi-purpose bot, mainly an 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.
-
-Executable hsbot
- Main-Is: Main.hs
- ghc-options: -Wall
- extensions: DeriveDataTypeable ScopedTypeVariables
- build-depends: base >= 4.1 && < 5,
- directory >= 1.0,
- filepath >= 1.1,
- process >= 1.0,
- unix >= 2.4
-
-Library
- exposed-modules:
- Hsbot.Config
- Hsbot.Core
- Hsbot.Irc.Command
- Hsbot.Irc.Config
- Hsbot.Irc.Core
- Hsbot.Irc.Message
- Hsbot.Irc.Plugin
- Hsbot.Irc.Plugin.Core
- Hsbot.Irc.Plugin.Dummy
- Hsbot.Irc.Plugin.Ping
- Hsbot.Irc.Plugin.Quote
- Hsbot.Irc.Plugin.Utils
- Hsbot.Irc.Server
- Hsbot.Irc.Types
- Hsbot.Message
- Hsbot.Plugin
- Hsbot.PluginUtils
- Hsbot.Types
- ghc-options: -Wall
- extensions: DeriveDataTypeable ScopedTypeVariables
- build-depends: base >= 4.1 && < 5,
- containers >= 0.3,
- directory >= 1.0,
- filepath >= 1.1,
- haskell98 >= 1.0,
- mtl >= 1.1,
- network >= 2.2,
- parsec >= 3.1,
- random >= 1.0,
- text >= 0.7,
- time >= 1.1,
- unix >= 2.4
-