-
Notifications
You must be signed in to change notification settings - Fork 1
/
desbot.cabal
80 lines (76 loc) · 1.8 KB
/
desbot.cabal
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: desbot
version: 0.1.0.0
synopsis: Haskell evaluation IRC bot
description:
A more sane Haskell evaluation IRC bot.
homepage: https://github.com/pharpend/desbot
bug-reports: https://github.com/pharpend/desbot/issues
license: BSD3
license-file: LICENSE
author: Peter Harpending
maintainer: [email protected]
copyright: Copyright (c) 2016, Peter Harpending
category: Network
build-type: Simple
cabal-version: >=1.10
extra-source-files:
config/desbot.yaml.sample
LICENSE
README.md
source-repository head
type: git
location: https://github.com/pharpend/desbot.git
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions:
DeriveGeneric
FlexibleContexts
FlexibleInstances
FunctionalDependencies
MultiParamTypeClasses
LambdaCase
OverloadedStrings
TemplateHaskell
other-modules:
Paths_desbot
build-depends:
aeson >=0.10.0.0
, base ==4.8.*
, hint
, irc-client
, mueval
, lens
, optparse-simple
, process
, text
, yaml
exposed-modules:
Desbot
executable desbot
hs-source-dirs: bin
default-language: Haskell2010
main-is: Main.hs
ghc-options: -Wall -threaded
default-extensions:
TemplateHaskell
build-depends:
base ==4.8.*
, bytestring
, desbot
, directory >=1.2.3.0
, file-embed
, lens
, optparse-applicative
, text
, time
test-suite spec
hs-source-dirs: spec
default-language: Haskell2010
main-is: Spec.hs
type: exitcode-stdio-1.0
build-depends:
base ==4.8.*
, desbot
, hspec