-
Notifications
You must be signed in to change notification settings - Fork 1
/
7inch.cabal
45 lines (42 loc) · 1.34 KB
/
7inch.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
34
35
36
37
38
39
40
41
42
43
44
45
-- Initial 7inch.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: 7inch
version: 0.1.0.0
synopsis: Yet another Haskell IRC Bot.
-- description:
license: MIT
license-file: LICENSE
author: Cole Brown
maintainer: [email protected]
-- copyright:
category: Network
build-type: Simple
cabal-version: >=1.8
library
build-depends: base ==4.5.*
exposed-modules: Text.Parsers.IRC
exposed-modules: Network.IRC.SevenInch
build-depends: parsec ==3.1.2
build-depends: regex-posix
build-depends: stm
build-depends: network ==2.3.0.13
executable 7inch
hs-source-dirs: src
hs-source-dirs: src/Modules
main-is: Main.hs
-- other-modules:
build-depends: base ==4.5.*
build-depends: network ==2.3.0.13
build-depends: unix
build-depends: 7inch
build-depends: mtl
build-depends: stm
build-depends: regex-posix
build-depends: regex-compat
build-depends: random
build-depends: aeson
build-depends: attoparsec
build-depends: bytestring
build-depends: HTTP
build-depends: text
build-depends: containers