name: kirk
version: 1.0.1
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,
    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