forked from tismith/tlisp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtlisp.cabal
44 lines (41 loc) · 1.05 KB
/
tlisp.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
name: tlisp
category: Language, Compilers/Interpreters
version: 0.1.0.0
cabal-version: >=1.10
license-file: LICENSE
license: MIT
author: Toby Smith
maintainer: Toby Smith <[email protected]>
homepage: https://github.com/tismith/write-yourself-a-scheme
synopsis: Toby's lisp
copyright: Copyright (C) 2014 Toby Smith
build-type: Simple
extra-source-files:
README
.gitignore
executable tlisp
build-depends:
base -any,
mtl >=2.1.2 && <2.2,
parsec >=3.1.3 && <3.2,
vector >=0.10.0.1 && <0.11,
transformers >=0.3.0.0 && <0.4,
containers >=0.4.2.1 && <0.6,
haskeline <0.8
main-is: Main.hs
ghc-options: -Wall -Werror
buildable: True
default-language: Haskell2010
hs-source-dirs: src
test-suite doctests
build-depends:
base -any,
doctest >=0.8
type: exitcode-stdio-1.0
main-is: test/Doctests.hs
buildable: True
default-language: Haskell2010
ghc-options: -threaded
source-repository head
type: git
location: https://github.com/tismith/tlisp