-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimprevu.cabal
70 lines (67 loc) · 2.26 KB
/
imprevu.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
name: imprevu
version: 0.1.0
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: 2016 Corentin Dupont
maintainer: Corentin Dupont
stability: Experimental
synopsis: Reactive programming language based on a DSL
description: A DSL to express events
category: Language
Homepage: http://www.nomyx.net
author: Corentin Dupont
data-files:
data-dir: ""
extra-source-files: AUTHORS README.md
library
build-depends: DebugTraceHelpers == 0.12.*,
Boolean == 0.2.*,
base >= 4.6 && < 5,
containers == 0.5.*,
lens >= 4.7 && < 4.15,
ghc >= 7.6 && < 8.1,
mtl >= 2.1 && < 2.3,
old-locale == 1.0.*,
random == 1.1.*,
safe == 0.3.*,
time >= 1.4 && < 1.7,
time-recurrence == 0.9.*,
monad-loops == 0.4.*,
aeson,
stm,
validation >= 0.3 && < 1,
semigroups,
shortcut,
NoTrace
exposed-modules: Imprevu
Imprevu.Types
Imprevu.Events
Imprevu.Inputs
Imprevu.Messages
Imprevu.Variables
Imprevu.SysMgt
Imprevu.Evaluation
Imprevu.Evaluation.Types
Imprevu.Evaluation.EventEval
Imprevu.Evaluation.InputEval
Imprevu.Evaluation.TimeEval
Imprevu.Evaluation.Utils
Imprevu.Test.TestMgt
Imprevu.Test.Test
exposed: True
buildable: True
hs-source-dirs: src
ghc-options: -W
cpp-options: -DNODEBUG
Test-Suite test
type: detailed-0.9
test-module: Test
hs-source-dirs: test
build-depends: base,
imprevu == 0.1.0,
Cabal >= 0.22
source-repository head
type: git
location: https://github.com/cdupont/Nomyx.git