-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhasktan.cabal
39 lines (34 loc) · 1.18 KB
/
hasktan.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
cabal-version: >=1.10
-- Initial package description 'hasktan.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: hasktan
version: 0.1.0.0
synopsis: A toy functional language based on Haskell.
-- description:
-- bug-reports:
license: BSD3
license-file: LICENSE
author: Henry Wandover
maintainer: [email protected]
-- copyright:
category: Programming Languages
build-type: Simple
extra-source-files: README.md, CHANGELOG.md
library hasktan-lib
exposed-modules: Hasktan
other-modules: Grammar, Lexer, TypeChecker
hs-source-dirs: lib
build-depends: base, array
default-language: Haskell2010
executable hasktan
main-is: Main.hs
-- other-extensions:
build-depends: hasktan-lib, base, filepath, readline
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: BasicTest.hs
hs-source-dirs: tests
build-depends: hasktan-lib, GHUT, base, HUnit
default-language: Haskell2010