forked from otevrenamesta/haskell-ttn-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ttn-dashboard.cabal
73 lines (70 loc) · 1.25 KB
/
ttn-dashboard.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
name: ttn-dashboard
version: 0.1.0.0
synopsis: TTN otevrenamesta
category: Web
license: BSD3
build-type: Simple
cabal-version: >=1.10
executable server
main-is: Main.hs
if impl(ghcjs)
buildable: False
else
ghc-options:
-O2 -threaded -Wall -rtsopts
hs-source-dirs:
server, shared
build-depends:
aeson,
base < 5,
containers,
http-types,
lucid,
miso,
mtl,
network-uri,
servant,
servant-lucid,
servant-server,
text,
time,
wai,
wai-app-static,
wai-extra,
stm,
bytestring,
base64-bytestring,
pretty-simple,
websockets,
ttn,
ttn-client,
cayene-lpp,
binary,
shakespeare,
warp
default-language:
Haskell2010
executable client
main-is:
Main.hs
if !impl(ghcjs)
buildable: False
else
ghcjs-options:
-dedupe
hs-source-dirs:
client, shared
build-depends:
aeson,
base < 5,
containers,
network-uri,
text,
time,
miso,
ttn,
cayene-lpp,
shakespeare,
servant
default-language:
Haskell2010