blob: 6c2bdd478ea7cae11f4351a671764ef7e1b76a72 (
plain)
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
|
cabal-version: >=1.10
-- Initial package description 'lisk.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: lisk
version: 0.1.0.0
synopsis: a lisp interpreter
description: an educational lisp interpreter written in haskell by DSCRV
-- bug-reports:
license: GPL-3
-- license-file: LICENSE
author: Akshay
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
library
default-language: Haskell2010
hs-source-dirs: src
build-depends:
base == 4.*,
parsec == 3.*,
mtl >= 2.1
exposed-modules:
Parser,
Evaluator,
Operators,
Error.Base
Error.Pretty
Environment
executable lisk
default-language: Haskell2010
main-is: Main.hs
hs-source-dirs: bin
build-depends:
base == 4.*,
parsec == 3.*,
readline >= 1.0,
mtl >= 2.1,
lisk
test-suite properties
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: tests
other-modules: Properties
build-depends:
base == 4.*,
parsec == 3.*,
QuickCheck >= 2.1 && < 3,
lisk
|