forked from mzero/plush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplush.cabal
143 lines (128 loc) · 3.37 KB
/
plush.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
Name: plush
Version: 0.2.0.0
License: OtherLicense
License-file: LICENSE
Author: Mark Lentczner
Maintainer: [email protected]
Category: Utility
Build-type: Simple
Cabal-version: >=1.8
Synopsis: the comfy shell
Description:
Plush is a shell with a modern interface: a web page.
Data-files:
data/summaries.txt
static/css/*.css
static/css/*.gif
static/css/*.png
static/img/*.png
static/*.html
static/js/*.js
static/js/app.build.js
static/js/collections/*.js
static/js/libs/backbone/*.js
static/js/libs/hterm/*.js
static/js/libs/jquery/*.js
static/js/libs/require/*.js
static/js/libs/underscore/*.js
static/js/models/*.js
static/js/views/*.js
static/templates/*.html
tests/*.doctest
tests/*.sh
tests/*.txt
Extra-source-files:
README
alltests.sh
static/js/libs/README
static/js/libs/backbone/LICENSE
static/js/libs/jquery/MIT-LICENSE
static/js/libs/require/LICENSE
static/js/libs/underscore/LICENSE
Executable plush
Main-is: Main.hs
hs-source-dirs: src
Other-modules:
Plush.DocTest
Plush.Job
Plush.Job.Output
Plush.Main
Plush.Parser.Base
Plush.Parser.Commands
Plush.Parser.Tokens
Plush.Parser
Plush.Pretty
Plush.Run.Annotate
Plush.Run.BuiltIns
Plush.Run.BuiltIns.FileSystem
Plush.Run.BuiltIns.Grep
Plush.Run.BuiltIns.ShellState
Plush.Run.BuiltIns.Syntax
Plush.Run.BuiltIns.Trivial
Plush.Run.BuiltIns.Utilities
Plush.Run.BuiltIns.WorkingDirectory
Plush.Run.Command
Plush.Run.Execute
Plush.Run.Expansion
Plush.Run.Posix
Plush.Run.Redirection
Plush.Run.ShellExec
Plush.Run.ShellFlags
Plush.Run.TestExec
Plush.Run.Types
Plush.Run
Plush.Server
Plush.Server.API
Plush.Server.Utilities
Plush.Types
Plush.Types.CommandSummary
Plush.Utilities
System.Posix.Missing
Build-depends:
aeson >= 0.5.0 && < 0.7,
attoparsec >= 0.8.6 && < 0.11,
base == 4.*,
blaze-builder >= 0.3.0 && < 0.4,
bytestring >= 0.9.1 && < 0.10,
conduit >= 0.1.1 && < 0.2,
containers >= 0.4.0 && < 0.5,
directory >= 1.0.1 && < 1.2,
filepath >= 1.2.0 && < 1.4,
hashable >= 1.1.2 && < 1.2,
haskeline >= 0.6.2 && < 0.7,
http-types >= 0.6.7 && < 0.7,
mtl >= 2.0 && < 2.2,
transformers >= 0.2.2 && < 0.4,
pretty >= 1.0.1 && <= 1.1.1.0,
parsec >= 3.0.1 && < 3.2,
process >= 1.0.1 && <= 1.1.0.1,
random >= 1.0.0 && < 1.1,
text >= 0.11.1 && < 1.12,
unix >= 2.4.0 && < 2.6,
unordered-containers >= 0.1.4 && < 0.2,
wai >= 1.0.0 && < 1.1,
wai-middleware-static >= 0.0.1 && < 0.1,
wai-middleware-route >= 0.2.0 && < 0.3,
warp >= 1.0.0 && < 1.1
C-sources:
src/main.c
ghc-options: -no-hs-main -Wall -threaded -fno-warn-missing-signatures -fwarn-tabs
Executable recho
Main-is: Recho.hs
hs-source-dirs: src
Other-modules:
System.Posix.Missing
Build-depends:
aeson >= 0.5.0 && < 0.7,
base == 4.*,
bytestring >= 0.9.1 && < 0.10,
containers >= 0.3.0 && < 0.5,
directory >= 1.0.1 && < 1.2,
filepath >= 1.2.0 && < 1.4,
mtl >= 2.0 && < 2.2,
process >= 1.0.1 && <= 1.1.0.1,
text >= 0.11.1 && < 1.12,
transformers >= 0.2.2 && < 0.4,
unix >= 2.4.0 && < 2.6,
unordered-containers >= 0.1.4 && < 0.2
ghc-options: -Wall -fno-warn-missing-signatures -fwarn-tabs