add irc, add more handlers

This commit is contained in:
Jon Doe
2020-09-26 21:26:42 +02:00
committed by Maciej Bonin
parent 5342dafe3f
commit 6edb35727f
6 changed files with 214 additions and 11 deletions

View File

@ -14,7 +14,7 @@ cabal-version: >=1.10
extra-source-files: README.md
library
exposed-modules: GypsFulvus, GypsFulvus.PluginStuff, Carrion.Plugin.IO.STDIO, Carrion.Plugin.TCL
exposed-modules: GypsFulvus, GypsFulvus.PluginStuff, Carrion.Plugin.IO.STDIO, Carrion.Plugin.TCL, Carrion.Plugin.IO.IRC.Client
other-modules:
default-language: Haskell2010
hs-source-dirs: src
@ -27,7 +27,17 @@ library
hashable,
monad-parallel,
haskeline,
unix
unix,
connection >= 0.3.1,
irc-client,
irc-conduit >= 0.3.0.4,
irc-ctcp >= 0.1.3.0,
lens,
network-conduit-tls >= 1.3.2,
tls >= 1.5.4,
x509-validation >= 1.6.11,
bytestring
extra-libraries: tcl8.6
Includes: /usr/include/tcl.h,
src/tclstubswrapper/tclstubs.h
@ -49,14 +59,24 @@ executable GypsFulvus
hashable,
monad-parallel,
haskeline,
unix
unix,
connection >= 0.3.1,
irc-client,
irc-conduit >= 0.3.0.4,
irc-ctcp >= 0.1.3.0,
lens,
network-conduit-tls >= 1.3.2,
tls >= 1.5.4,
x509-validation >= 1.6.11,
bytestring
ghc-options:
-O2
-threaded
-with-rtsopts=-N
-g
hs-source-dirs: src
other-modules: GypsFulvus.PluginStuff,GypsFulvus, Carrion.Plugin.IO.STDIO, Carrion.Plugin.TCL
other-modules: GypsFulvus.PluginStuff,GypsFulvus, Carrion.Plugin.IO.STDIO, Carrion.Plugin.TCL, Carrion.Plugin.IO.IRC.Client
exposed-modules: GypsFulvus
extra-libraries: tcl8.6
Includes: /usr/include/tcl.h,