aboutsummaryrefslogtreecommitdiff
path: root/lisk.cabal
blob: 9578a856bfda16fef935ba50e46e20ce9a71e137 (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
56
57
58
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
  build-depends: 
    base >=4.12 && <4.13,
    parsec == 3.*,
    mtl >= 2.1
  hs-source-dirs: src
  exposed-modules: 
    Parser,
    Evaluator,
    Operators,
    Error.Base
    Error.Pretty

executable lisk
  default-language: Haskell2010
  main-is: Main.hs
  build-depends: 
    base >=4.12 && <4.13,
    parsec == 3.*,
    readline >= 1.0,
    mtl >= 2.1,
    lisk
  hs-source-dirs: bin

test-suite properties
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs: tests
  build-depends:
    base >=4.12 && <4.13, 
    parsec == 3.*,
    QuickCheck >= 2.4 && < 3,
    test-framework >= 0.6 && < 0.9,
    test-framework-hunit >= 0.3 && < 0.5,
    test-framework-quickcheck2 >= 0.2 && < 0.4,
    test-framework-th >= 0.2 && < 0.4,
    lisk
  other-modules: Properties