-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflipdots.cabal
45 lines (43 loc) · 1.32 KB
/
flipdots.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: flipdots
version: 0.1.0.0
synopsis: Control the Flipdots display in OpenLab Augsburg!
-- description:
homepage: https://github.com/timjb/haskell-flipdots
license: MIT
license-file: LICENSE
author: Tim Baumann
maintainer: [email protected]
copyright: 2015 (c) Tim Baumann
category: Graphics
build-type: Simple
cabal-version: >= 1.10
data-dir: resources
data-files: index.html app.js style.css jquery.min.js socket.io.min.js
library
exposed-modules: Graphics.Flipdots
build-depends: base >= 4.6 && < 4.10,
network >= 2.6 && < 2.7,
word8 >= 0.1 && < 0.2,
bytestring >= 0.10 && < 0.11,
aeson >= 0.7.0.6 && < 1.1
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010
executable flipdots-web
build-depends:
base,
flipdots,
engine-io,
yesod-core,
yesod-static,
engine-io-yesod,
socket-io,
optparse-applicative,
stm,
bytestring,
transformers,
aeson
other-modules: Paths_flipdots
main-is: FlipdotsWeb.hs
ghc-options: -Wall -threaded
default-language: Haskell2010