forked from IHaskell/IHaskell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ihaskell.cabal
188 lines (163 loc) · 6.38 KB
/
ihaskell.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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
-- The name of the package.
name: ihaskell
-- The package version. See the Haskell package versioning policy (PVP)
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.9.1.0
-- A short (one-line) description of the package.
synopsis: A Haskell backend kernel for the IPython project.
-- A longer description of the package.
description: IHaskell is a Haskell backend kernel for the IPython project. This allows using Haskell via
a console or notebook interface. Additional packages may be installed to provide richer data visualizations.
-- URL for the project homepage or repository.
homepage: http://github.com/gibiansky/IHaskell
-- The license under which the package is released.
license: MIT
-- The file containing the license text.
license-file: LICENSE
-- The package author(s).
author: Andrew Gibiansky
-- An email address to which users can send suggestions, bug reports, and
-- patches.
maintainer: andrew.gibiansky@gmail.com
-- A copyright notice.
-- copyright:
category: Development
build-type: Simple
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.16
data-files:
html/kernel.js
html/logo-64x64.svg
library
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
build-depends:
aeson >=1.0,
base >=4.9,
base64-bytestring >=1.0,
bytestring >=0.10,
cereal >=0.3,
cmdargs >=0.10,
containers >=0.5,
directory -any,
filepath -any,
ghc >=8.0,
ghc-parser >=0.1.7,
ghc-paths >=0.1,
haskeline -any,
hlint >=1.9,
haskell-src-exts >=1.18,
http-client >= 0.4,
http-client-tls >= 0.2,
mtl >=2.1,
parsec -any,
process >=1.1,
random >=1.0,
shelly >=1.5,
split >= 0.2,
stm -any,
strict >=0.3,
system-argv0 -any,
text >=0.11,
transformers -any,
unix >= 2.6,
unordered-containers -any,
utf8-string -any,
uuid >=1.3,
vector -any,
ipython-kernel >=0.9.1,
ghc-boot >=8.0 && <8.7
exposed-modules: IHaskell.Display
IHaskell.Convert
IHaskell.Convert.Args
IHaskell.Convert.IpynbToLhs
IHaskell.Convert.LhsToIpynb
IHaskell.Eval.Completion
IHaskell.Eval.Inspect
IHaskell.Eval.Evaluate
IHaskell.Eval.Info
IHaskell.Eval.Lint
IHaskell.Eval.Parser
IHaskell.Eval.Hoogle
IHaskell.Eval.ParseShell
IHaskell.Eval.Widgets
IHaskell.Eval.Util
IHaskell.Publish
IHaskell.IPython
IHaskell.IPython.Stdin
IHaskell.Flags
IHaskell.Types
IHaskell.BrokenPackages
IHaskell.CSS
Paths_ihaskell
IHaskellPrelude
other-modules:
StringUtils
executable ihaskell
-- .hs or .lhs file containing the Main module.
main-is: Main.hs
hs-source-dirs: main
other-modules:
Paths_ihaskell
ghc-options: -threaded -rtsopts -Wall
if os(darwin)
ghc-options: -optP-Wno-nonportable-include-path
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
-- Other library packages from which modules are imported.
default-language: Haskell2010
build-depends:
ihaskell -any,
base >=4.9 && < 4.13,
text >=0.11,
transformers -any,
ghc >=8.0 && < 8.7,
process >=1.1,
aeson >=0.7,
bytestring >=0.10,
unordered-containers -any,
containers >=0.5,
strict >=0.3,
unix >= 2.6,
directory -any,
ipython-kernel >=0.7,
unordered-containers -any
Test-Suite hspec
Type: exitcode-stdio-1.0
Ghc-Options: -threaded -Wall
if impl (ghc >= 8.4)
ghc-options: -Wpartial-fields
Main-Is: Hspec.hs
hs-source-dirs: src/tests
other-modules:
IHaskell.Test.Eval
IHaskell.Test.Completion
IHaskell.Test.Util
IHaskell.Test.Parser
IHaskell.Test.Hoogle
default-language: Haskell2010
build-depends:
base,
ihaskell,
here,
hspec,
hspec-contrib,
HUnit,
ghc,
ghc-paths,
transformers,
directory,
text,
shelly,
raw-strings-qq,
setenv
source-repository head
type: git
location: git://github.com/gibiansky/IHaskell.git