summaryrefslogtreecommitdiffstats
path: root/kirk.cabal
blob: 08cd4cf561d566833e65dd7c5ddce352afa17b4a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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