forked from alios/lambda-devs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlambda-devs.cabal
83 lines (77 loc) · 3.05 KB
/
lambda-devs.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
name: lambda-devs
version: 0.5.0
stability: alpha
synopsis: a Paralell-DEVS implementaion based on distributed-process
description: The Discrete Event System Sepcification (DEVS) formalism
defines discrete event simulation models in a hierachical,
modular manner.
homepage: http://github.com/alios/lambda-devs
license: BSD3
license-file: LICENSE
author: Markus Barenhoff
maintainer: alios@alios.org
category: Control, Simulation
build-type: Simple
extra-source-files: README.md, LICENSE
cabal-version: >=1.10
tested-with: GHC == 7.6.3
source-repository head
type: git
location: https://github.com/alios/lambda-devs.git
library
exposed-modules: Data.DEVS,
Data.DEVS.Devs
Data.DEVS.Simulation
Data.DEVS.Simulation.Processor
Data.DEVS.Simulation.Simulator
Data.DEVS.Simulation.Coordinator
other-modules: Data.DEVS.Simulation.Infinite
other-extensions: MultiParamTypeClasses,
DeriveDataTypeable,
GADTs,
TypeFamilies,
FlexibleInstances,
FlexibleContexts,
UndecidableInstances,
ExistentialQuantification,
FunctionalDependencies
build-depends: base >=4.6 && < 5,
binary >=0.5,
containers >=0.5,
distributed-process >=0.4,
dimensional >= 0.12,
stm >= 2.4,
SafeSemaphore
default-language: Haskell2010
ghc-options: -Wall
Test-suite lambda-devs-tests
hs-source-dirs: Test, .
main-is: Tests.hs
type: exitcode-stdio-1.0
build-depends: base >=4.6 && < 5,
binary >=0.5,
containers >=0.5,
distributed-process >=0.4,
dimensional >= 0.12
default-language: Haskell2010
ghc-options: -Wall
other-extensions: MultiParamTypeClasses,
DeriveDataTypeable,
TypeFamilies
build-depends: test-framework,
test-framework-hunit,
test-framework-quickcheck2,
HUnit,
QuickCheck
executable lambda-devs-example
main-is: Example.hs
hs-source-dirs: Example
build-depends: base >= 4.6 && < 5,
binary >= 0.5,
containers >= 0.5,
distributed-process >= 0.4,
lambda-devs >= 0.4,
numtype >= 1.0,
dimensional >= 0.12
default-language: Haskell2010
ghc-options: -Wall