~ubuntu-branches/ubuntu/precise/haskell-irc/precise

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
name:               irc
synopsis:           A small library for parsing IRC messages.
description:        A set of combinators and types for parsing IRC messages.
version:            0.5.0.0
category:           Data, Network
license:            BSD3
license-file:       LICENSE
author:             Trevor Elliott
maintainer:         trevor@geekgateway.com
extra-source-files: tests/Makefile,
                    tests/Tests.hs
cabal-version:      >= 1.6.0
build-type:         Simple

source-repository head
  type:     git
  location: git://github.com/elliottt/hsirc.git

library
  ghc-options:     -Wall
  build-depends:   base == 4.*, parsec >= 2.1 && < 3.2
  exposed-Modules: Network.IRC,
                   Network.IRC.Base,
                   Network.IRC.Commands,
                   Network.IRC.Parser