-
Notifications
You must be signed in to change notification settings - Fork 22
/
hue-dashboard.cabal
46 lines (44 loc) · 1.53 KB
/
hue-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
name: hue-dashboard
version: 0.1.0.0
synopsis: Web dashboard for Philips Hue light bulbs
description: Please see README.md
homepage: https://github.com/blitzcode/hue-dashboard#readme
license: MIT
author: Tim C. Schroeder
maintainer: www.blitzcode.net
copyright: (C) 2016 Tim C. Schroeder
category: Web
build-type: Simple
cabal-version: >=1.10
executable hue-dashboard
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5,
mtl,
transformers,
lens,
ansi-terminal,
unordered-containers,
bytestring,
text,
http-conduit,
http-client,
aeson,
attoparsec,
time,
yaml,
exceptions,
filepath,
hostname,
threepenny-gui,
stm,
async,
JuicyPixels,
vector,
blaze-html,
random,
process,
hashable
-- TODO: Seems like dynamic linking doesn't work on Windows, disable for that platform?
ghc-options: -Wall -rtsopts -with-rtsopts=-N -O2 -j -threaded -dynamic
ghc-prof-options: -fprof-auto -caf-all