-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathwires.cabal
75 lines (66 loc) · 1.86 KB
/
wires.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
name: wires
version: 0.2.1
category: Control, FRP
synopsis: Functional reactive programming library
maintainer: Ertugrul Söylemez <[email protected]>
author: Ertugrul Söylemez <[email protected]>
copyright: Copyright 2017 Ertugrul Söylemez
homepage: https://github.com/esoeylemez/wires
bug-reports: https://github.com/esoeylemez/wires/issues
license: BSD3
license-file: LICENSE
description: Functional reactive programming library.
build-type: Simple
cabal-version: >= 1.10
extra-source-files: CHANGELOG.md README.md
source-repository head
type: git
location: https://github.com/esoeylemez/wires.git
flag Examples
default: False
description: Build the example programs
manual: True
library
build-depends:
base >= 4.8 && < 5,
deepseq == 1.4.*,
mtl >= 2.0 && < 2.3,
profunctors >= 5.0 && < 5.3,
semigroupoids >= 5.0 && < 5.3,
these == 0.7.*
default-language: Haskell2010
ghc-options: -W
exposed-modules:
Control.Wire
Control.Wire.Controller
Control.Wire.Core
Control.Wire.Internal
Control.Wire.Trans
Control.Wire.Utils
Control.Wire.Varying
executable wires-feedback
if flag(examples)
build-depends:
base >= 4.8 && < 5,
wires
else
buildable: False
default-language: Haskell2010
ghc-options: -threaded -fdefer-typed-holes
hs-source-dirs: examples
main-is: feedback.hs
executable wires-ping-pong
if flag(examples)
build-depends:
base >= 4.8 && < 5,
clock,
containers,
profunctors,
wires
else
buildable: False
default-language: Haskell2010
ghc-options: -threaded -fdefer-typed-holes
hs-source-dirs: examples
main-is: ping-pong.hs
other-modules: Utils