summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2017-05-23 21:13:39 +0200
committertv <tv@krebsco.de>2017-05-23 21:42:59 +0200
commitcdf3cb373af8f9b03a9487a63eb32e0226913589 (patch)
tree942349dad489ffacf108fff4503fb95ca879aefd
parent00e81b5a2c6ddd5a5caf4934a8ee32b1281ccc53 (diff)
kirk.cabal: add libraryHEADv1.0.1ni/mastermaster
-rw-r--r--kirk.cabal20
1 files changed, 18 insertions, 2 deletions
diff --git a/kirk.cabal b/kirk.cabal
index 9153de1..08cd4cf 100644
--- a/kirk.cabal
+++ b/kirk.cabal
@@ -1,5 +1,5 @@
name: kirk
-version: 1.0.0
+version: 1.0.1
license: MIT
author: tv <tv@krebsco.de>
maintainer: tv@krebsco.de
@@ -10,10 +10,26 @@ executable ircout
main-is: ircout.hs
build-depends:
async,
- bytestring,
network,
optparse-applicative,
text,
base
default-language: Haskell2010
ghc-options: -O2 -Wall -threaded
+
+library
+ build-depends:
+ bytestring,
+ network,
+ optparse-applicative,
+ text,
+ base
+ default-language: Haskell2010
+ exposed-modules:
+ Kirk.Config,
+ Kirk.Simple
+ ghc-options: -O2 -Wall
+ other-extensions:
+ ApplicativeDo,
+ RecordWildCards,
+ OverloadedStrings