summaryrefslogtreecommitdiffstats
path: root/irc.cabal
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-05-02 21:59:10 +0200
committertv <tv@krebsco.de>2017-05-02 22:06:38 +0200
commit7225d47e9c1f4c7032ad55fbe1d9f33ff205549c (patch)
tree42320805e2c485e1bb5de701a55227840864a52d /irc.cabal
parent6312ce9800708eaf619ad0e93af3a224e09ce4de (diff)
ircout: init
Diffstat (limited to 'irc.cabal')
-rw-r--r--irc.cabal19
1 files changed, 19 insertions, 0 deletions
diff --git a/irc.cabal b/irc.cabal
new file mode 100644
index 0000000..afbdd60
--- /dev/null
+++ b/irc.cabal
@@ -0,0 +1,19 @@
+name: irc
+version: 1.0.0
+license: MIT
+author: tv <tv@krebsco.de>
+maintainer: tv@krebsco.de
+build-type: Simple
+cabal-version: >=1.10
+
+executable ircout
+ main-is: ircout.hs
+ build-depends:
+ async,
+ bytestring,
+ network,
+ optparse-applicative,
+ text,
+ base
+ default-language: Haskell2010
+ ghc-options: -O2 -Wall -threaded