-
Notifications
You must be signed in to change notification settings - Fork 1
/
wiz.cabal
52 lines (50 loc) · 1.73 KB
/
wiz.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
name: wiz
version: 0.1.0.0
synopsis: A Scheme interpreter
-- description:
homepage: stefanorodighiero.net/software/wiz.html
license: MIT
license-file: LICENSE
author: Stefano Rodighiero
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.22
executable wiz
main-is: Main.hs
other-modules: Wiz.Parser
, Wiz.Types
, Wiz.Core
, Wiz.Environment
, Wiz.EvalApply
build-depends: base >=4.7 && <=4.9
, transformers
, parsec >=3.1 && <3.2
, parsec-numbers
, haskeline >=0.7 && <0.8
, containers >=0.5 && <0.6
, hspec >=2.2 && <2.3
hs-source-dirs: src
default-language: Haskell2010
test-suite main-suite
main-is: Spec.hs
build-depends: base >=4.7 && <=4.9
, transformers
, parsec >=3.1 && <3.2
, parsec-numbers
, haskeline >=0.7 && <0.8
, containers >=0.5 && <0.6
, hspec >=2.2 && <2.3
type: exitcode-stdio-1.0
hs-source-dirs: src
, test
other-modules: Wiz.Parser
, Wiz.Types
, Wiz.Core
, Wiz.Environment
, Wiz.EvalApply
, Wiz.EvalApplySpec
, Wiz.EnvironmentSpec
default-language: Haskell2010