-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathxsh.cabal
68 lines (59 loc) · 1.16 KB
/
xsh.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
57
58
59
60
61
62
63
64
65
66
67
68
name: xsh
version: 0.0.1
license: AllRightsReserved
author: Mark Hibberd <[email protected]>
maintainer: Mark Hibberd <[email protected]>
copyright: (c) 2017 Mark Hibberd
cabal-version: >= 1.24
build-type: Simple
description:
A toy shell.
library
default-language: Haskell2010
build-depends:
base >= 3 && < 5
, async == 2.1.*
, containers >= 0.4 && < 0.6
, megaparsec == 5.3.*
, process == 1.4.*
, text >= 1.1 && < 1.3
, unix == 2.7.*
ghc-options:
-Wall
hs-source-dirs:
src
exposed-modules:
Xsh.Data
Xsh.Expansion
Xsh.Interpretter
Xsh.Lexer
Xsh.Parser
Xsh.Prelude
executable xsh
default-language: Haskell2010
main-is: main/xsh.hs
build-depends:
base >= 3 && < 5
, haskeline == 0.7.*
, optparse-applicative == 0.13.*
, xsh
ghc-options:
-Wall
-O2
-threaded
test-suite test
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: test
build-depends:
base >= 3 && < 5
, megaparsec
, text
, xsh
, QuickCheck >= 2.8.2 && < 2.9
, quickcheck-instances == 0.3.*
ghc-options:
-Wall
-threaded
-O2