File: lambdabot-utils.cabal

package info (click to toggle)
haskell-lambdabot-utils 4.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 152 kB
  • sloc: haskell: 1,249; makefile: 2
file content (68 lines) | stat: -rw-r--r-- 2,441 bytes parent folder | download
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
name:                lambdabot-utils
version:             4.2.2
license:             GPL
license-file:        LICENSE
author:              Don Stewart et al.
maintainer:          Jan Stolarek <jan.stolarek@p.lodz.pl>
category:            Development, Web
synopsis:            Utility libraries for the advanced IRC bot, Lambdabot
description:         Lambdabot is an IRC bot written over several years by
                     those on the #haskell IRC channel.
                     .
                     Our own custom libraries for various plugin functions.
                     .
                     AltTime.hs: alternate version of the time library
                     .
                     MiniHTTP.hs: a mini http server
                     .
                     Process.hs: a wrapper over System.Process
                     .
                     Regex.hsc: a fast packed string regex library
                     .
                     Serial.hs:: a serialisation API
                     .
                     Util.hs: miscellaneous string, and other, functions
homepage:            http://haskell.org/haskellwiki/Lambdabot
bug-reports:         https://github.com/killy9999/lambdabot-utils/issues
build-type:          Simple
tested-with:         GHC>=7.6
cabal-version:       >= 1.10

source-repository head
   type:     git
   location: git://github.com/killy9999/lambdabot-utils

library
  default-language: Haskell2010
  build-depends:    base >=4 && <5,
                    binary,
                    bytestring,
                    containers,
                    haskell-src,
                    mtl,
                    network,
                    old-time,
                    process,
                    random,
                    regex-compat,
                    regex-posix,
                    syb,
                    tagsoup > 0.6,
                    unix,
                    utf8-string,
                    zlib

  ghc-options:      -Wall

  exposed-modules:  Lambdabot.AltTime,
                    Lambdabot.Error,
                    Lambdabot.FixPrecedence,
                    Lambdabot.MiniHTTP,
                    Lambdabot.Parser,
                    Lambdabot.Pointful,
                    Lambdabot.Process,
                    Lambdabot.Regex,
                    Lambdabot.Serial,
                    Lambdabot.Signals,
                    Lambdabot.Url,
                    Lambdabot.Util