about summary refs log tree commit diff
path: root/users/glittershark/owothia/owothia.cabal
blob: 63c438fb8aa0f0dde64bae40d73ec659d7eb5988 (plain) (blame)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
cabal-version:       2.2
name:                owothia
version:             0.0.1.0

executable owothia
  main-is:             Main.hs
  build-depends:       base
                     , relude ^>= 0.6.0.0
                     , irc-client
                     , lens
                     , chatter
                     , containers
                     , text
                     , bytestring
                     , random
                     , envy

  mixins:              base hiding (Prelude)
                     , relude (Relude as Prelude)

  hs-source-dirs:
    src

  default-extensions:
    BlockArguments
    ConstraintKinds
    DataKinds
    DeriveAnyClass
    DeriveGeneric
    DerivingStrategies
    DerivingVia
    FlexibleContexts
    FlexibleInstances
    FunctionalDependencies
    GADTSyntax
    GeneralizedNewtypeDeriving
    KindSignatures
    LambdaCase
    MultiWayIf
    NoStarIsType
    OverloadedStrings
    PolyKinds
    RankNTypes
    ScopedTypeVariables
    TupleSections
    TypeApplications
    TypeFamilies
    TypeOperators
    ViewPatterns

  ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N -O2

  default-language:    Haskell2010