-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpinobot.cabal
86 lines (79 loc) · 2.9 KB
/
pinobot.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
name: pinobot
version: 0.2.0.0
synopsis: NetHack information IRC bot
description: See README.md
homepage: http://trankesbel.com/
license: MIT
license-file: LICENSE
author: Mikko Juola
maintainer: [email protected]
category: Network
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/UnNetHack/pinobot.git
library
exposed-modules: IRC.Bot
IRC.ConfigFile
IRC.Types
IRC.Socket
NetHack.Data.Dice
NetHack.Data.Monster
NetHack.Data.Variant
ghc-options: -fwarn-incomplete-patterns -Wall
hs-source-dirs: lib
build-depends: base >=4.7.0.0 && <5.0.0.0
,exceptions
,deepseq
,text >=1.3
,irc-client >=1.1.2.2 && <2.0
,irc-ctcp
,stm >= 2.4 && <3.0
,containers >=0.5 && <1.0
,optparse-applicative >=0.18
,transformers >=0.3 && <1.0
,bytestring >=0.11 && <1.0
,network >=3 && <4
,lens
,pipes >=4.1 && <5.0
,cereal >=0.4.1.1 && <1.0
,cereal-text
,time
,toml-parser>=2.0.1.0
,yaml >=0.8.10.1 && <1.0
,zlib >=0.7
default-language: Haskell2010
executable pinobot-frontend
hs-source-dirs: exe
main-is: Main.hs
ghc-options: -fwarn-incomplete-patterns -Wall -threaded
build-depends: base >=4.5.0.0 && <5.0.0.0
,pinobot
,text >=1.3
default-language: Haskell2010
executable pinobot-join
hs-source-dirs: commands
main-is: Join.hs
ghc-options: -fwarn-incomplete-patterns -Wall
build-depends: base, pinobot, text
default-language: Haskell2010
executable pinobot-part
hs-source-dirs: commands
main-is: Part.hs
ghc-options: -fwarn-incomplete-patterns -Wall
build-depends: base, pinobot, text
default-language: Haskell2010
executable pinobot-monsterdb
hs-source-dirs: monsterdb
other-modules: Bot
main-is: Main.hs
ghc-options: -fwarn-incomplete-patterns -Wall -threaded
build-depends: base >=4.5.0.0 && <5.0.0.0
,containers
,optparse-applicative >=0.18
,pinobot
,text >=1.3
,transformers >=0.3 && <1.0
,parsec >=3.1 && <4.0
default-language: Haskell2010