diff options
author | tv <tv@krebsco.de> | 2017-05-23 21:13:39 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-05-23 21:42:59 +0200 |
commit | cdf3cb373af8f9b03a9487a63eb32e0226913589 (patch) | |
tree | 942349dad489ffacf108fff4503fb95ca879aefd | |
parent | 00e81b5a2c6ddd5a5caf4934a8ee32b1281ccc53 (diff) |
-rw-r--r-- | kirk.cabal | 20 |
1 files changed, 18 insertions, 2 deletions
@@ -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 |