-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkell.cabal
56 lines (53 loc) · 1.74 KB
/
kell.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
45
46
47
48
49
50
51
52
53
54
55
56
cabal-version: 2.4
-- Initial package description 'kell.cabal' generated by 'cabal init'. For
-- further documentation, see http://haskell.org/cabal/users-guide/
name: kell
version: 0.0.1.0
-- synopsis:
-- description:
-- bug-reports:
license: Apache-2.0
license-file: LICENSE
author: Martin Erhardt
maintainer: martin.erhardt.tu@gmail.com
--copyright: Apache2
category: Shell
extra-source-files: CHANGELOG.md
executable kell
main-is: kell.hs
other-modules: Exec
ExpArith
Lexer
OpenAI
Patterns
ShCommon
TokParser
WordExp
ghc-options: -O2 -j -fprint-potential-instances
other-extensions: TupleSections
build-depends: aeson,
base ==4.*,
bytestring,
containers,
directory,
http-client >= 0.7.6,
http-conduit >= 2.3.8,
parsec,
regex-tdfa,
Stack ^>=0.4.0,
text,
transformers,
unix
hs-source-dirs: src
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: ShellTest.hs
hs-source-dirs: test
build-depends: base,
directory,
HUnit,
process,
test-framework,
test-framework-hunit
default-language: Haskell2010