-
Notifications
You must be signed in to change notification settings - Fork 6
/
irc.cabal
33 lines (30 loc) · 1.09 KB
/
irc.cabal
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: [email protected]
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