File: irc.cabal

package info (click to toggle)
haskell-irc 0.6.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 96 kB
  • sloc: haskell: 464; makefile: 4
file content (33 lines) | stat: -rw-r--r-- 1,119 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
name:               irc
synopsis:           A small library for parsing IRC messages.
description:        A set of combinators and types for parsing IRC messages.
version:            0.6.1.1
category:           Data, Network
license:            BSD3
license-file:       LICENSE
author:             Trevor Elliott
maintainer:         trevor@geekgateway.com
cabal-version:      >= 1.10
build-type:         Simple

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

library
  ghc-options:     -Wall
  default-language: Haskell2010
  build-depends:   base == 4.*, attoparsec, bytestring
  exposed-Modules: Network.IRC,
                   Network.IRC.Base,
                   Network.IRC.Commands,
                   Network.IRC.Parser

test-suite Main
  type:            exitcode-stdio-1.0
  x-uses-tf:       true
  build-depends:   base == 4.*, HUnit >= 1.2 && < 2, QuickCheck >= 2.4, test-framework >= 0.4.1, test-framework-quickcheck2, test-framework-hunit, bytestring, irc
  ghc-options:     -Wall
  hs-source-dirs:  tests
  default-language: Haskell2010
  main-is:         Main.hs