packages feed

kevin-0.11.0: kevin.cabal

Name:             kevin
Version:          0.11.0
Synopsis:         a dAmn ↔ IRC proxy
Description:      a dAmn ↔ IRC proxy
License:          GPL
License-file:     LICENSE
Author:           Joel Taylor
Maintainer:       me@joelt.io
Build-Type:       Simple
Cabal-Version:    >=1.10
Category:         Utils
Tested-With:      GHC == 7.4.2, GHC == 7.6.3, GHC == 7.7.20130828

source-repository head
    type: git
    location: git://github.com/joelteon/kevin.git

Executable kevin
    Main-is:            Main.hs

    Default-language:   Haskell2010

    Build-Depends:      attoparsec,
                        base == 4.*,
                        bytestring,
                        containers,
                        cprng-aes,
                        damnpacket,
                        data-default,
                        HTTP >= 4000.2,
                        lens >= 3.9,
                        mtl,
                        network,
                        regex-pcre-builtin,
                        stm,
                        text,
                        time,
                        tls,
                        tls-extra

    if impl(ghc>=7.7)
      Build-Depends:    exceptions,
                        lens >= 3.10

    if impl(ghc<7.7)
      Build-Depends:    MonadCatchIO-transformers

    Other-Modules:      Kevin,
                        Kevin.Base,
                        Kevin.Chatrooms,
                        Kevin.Damn.Protocol,
                        Kevin.Damn.Protocol.Send,
                        Kevin.IRC.Packet,
                        Kevin.IRC.Protocol,
                        Kevin.IRC.Protocol.Send,
                        Kevin.Protocol,
                        Kevin.Settings,
                        Kevin.Types,
                        Kevin.Util.Entity,
                        Kevin.Util.Logger,
                        Kevin.Util.Tablump,
                        Kevin.Util.Token,
                        Kevin.Version

    ghc-options:        -Wall -fno-warn-unused-do-bind -threaded

    hs-source-dirs:     src