This repository has been archived by the owner on Sep 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
umrc.cabal
49 lines (45 loc) · 1.56 KB
/
umrc.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
-- Initial umrc.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: umrc
version: 0.2
synopsis: IRC bot to control a mastodon account
-- description:
homepage: https://github.com/ulrar/umrc
license: Beerware
license-file: LICENSE
author: Kevin Lemonnier
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
default-language: Haskell2010
hs-source-dirs: lib
exposed-modules: Web.Hastodon
build-depends: base >=4.6, bytestring >=0.10 && <0.11, text >=1.2 && <1.3, http-types, http-conduit, MissingH, aeson
executable umrc
main-is: umrc.hs
hs-source-dirs: src/
-- other-modules:
-- other-extensions:
build-depends: umrc,
base >=4.6,
bytestring >=0.10 && <0.11,
text >=1.2 && <1.3,
utf8-string,
tagsoup,
timers,
suspend,
simpleirc,
ini,
MissingH,
http-conduit,
http-types,
stringsearch,
twitter-conduit,
twitter-types,
lens
-- hs-source-dirs:
default-language: Haskell2010