-
Notifications
You must be signed in to change notification settings - Fork 0
/
bblang.cabal
36 lines (32 loc) · 1 KB
/
bblang.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
name: bblang
version: 0.1.0.0
license: MIT
category: Compilers
description: A toy functinal programming language.
synopsis: A toy functinal programming language.
license-file: LICENSE
author: Stepfen Shawn
maintainer: [email protected]
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
executable bblang
build-depends:
base >= 4.7 && <5
, haskeline >= 0.7.1.2
, parsec >= 3.1
, mtl >= 2.1.3
, transformers >= 0.3.0.0 && < 0.6
default-language: Haskell2010
hs-source-dirs: src
main-is: Main.hs
-- for temporay test
test-suite test
type: exitcode-stdio-1.0
build-depends:
base >= 4.7 && <5
,array >= 0.5.4.0
,containers >= 0.6.7
default-language: Haskell2010
hs-source-dirs: src
main-is: Test.hs