-
Notifications
You must be signed in to change notification settings - Fork 2
/
hue.cabal
102 lines (98 loc) · 3.41 KB
/
hue.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
cabal-version: 2.4
name: hue
version: 0.1.0
-- synopsis:
-- description:
homepage: https://github.com/txsmith/hue#readme
license: BSD-3-Clause
license-file: LICENSE
author: Thomas Smith, Grzegorz Dziadkiewicz
maintainer: Grzegorz Dziadkiewicz <[email protected]>
copyright: 2018 Thomas Smith
category: Web
build-type: Simple
extra-source-files: README.md
description:
Control Philips Hue lights with Haskell.
To get started, see the Hue module.
library
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
exposed-modules: Hue
, Hue.Light
, Hue.Sensor
, Hue.Group
, Hue.Config
, Hue.Auth
, Hue.Request
, Hue.Discover
, Hue.Internal
, Hue.Internal.Light
, Hue.Internal.Sensor
, Hue.Internal.Group
, Hue.Internal.Config
, Hue.Internal.Auth
, Hue.Internal.Request
, Hue.Internal.Discover
other-modules: Hue.Examples
build-depends: base >= 4.12 && < 5
, http-client
, http-conduit
, http-types
, blaze-builder
, hostname
, aeson > 2
, bytestring
, text
, containers
, unordered-containers
, vector
, monad-loops
, mtl
, transformers
, path
, path-io
, network
, network-uri
, time
, hexml
, safe-exceptions >= 0.1 && < 0.2
, pretty-simple
, flow
default-extensions: ScopedTypeVariables
, OverloadedStrings
, RecordWildCards
, FlexibleInstances
, FlexibleContexts
, DataKinds
, KindSignatures
, LambdaCase
, GeneralizedNewtypeDeriving
, StandaloneDeriving
-- executable hue-exe
-- hs-source-dirs: app
-- main-is: Main.hs
-- ghc-options: -threaded -rtsopts -with-rtsopts=-N
-- build-depends: base
-- , hue
-- default-language: Haskell2010
-- default-extensions: ScopedTypeVariables
-- , OverloadedStrings
-- , RecordWildCards
-- , FlexibleInstances
-- , FlexibleContexts
-- , DataKinds
-- , KindSignatures
-- , LambdaCase
test-suite hue-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, hue
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/githubuser/hue