This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 135
/
Copy pathintero.cabal
123 lines (118 loc) · 1.83 KB
/
intero.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
name:
intero
version:
0.1.40
synopsis:
Complete interactive development program for Haskell
license:
BSD3
homepage:
https://github.com/commercialhaskell/intero
license-file:
LICENSE
author:
Chris Done, The University of Glasgow
maintainer:
copyright:
2016 FP Complete,
2016 Chris Done,
2012 Kazu Yamamoto,
2008 Claus Reinke,
2005 The University of Glasgow
category:
Development
build-type:
Simple
cabal-version:
>= 1.14
stability:
Stable
extra-source-files:
cbits/HsVersions.h
cbits/PosixSource.h
CHANGELOG
README.md
data-files:
elisp/*.el
source-repository head
type:
git
location:
git://github.com/commercialhaskell/intero.git
executable intero
default-language:
Haskell2010
main-is:
Main.hs
ghc-options:
-Wall -O2 -threaded -rtsopts
include-dirs:
cbits/
hs-source-dirs:
src/
c-sources:
cbits/hschooks.c
cpp-options:
-DGHCI
cc-options:
-fPIC
other-modules:
InteractiveUI
GhciMonad
GhciTags
GhciTypes
GhciInfo
GhciFind
Intero.Compat
Paths_intero
build-depends:
base < 5,
array,
bytestring,
directory,
filepath,
ghc >= 7.8 && <= 8.6.5,
ghc-paths,
haskeline,
process,
transformers,
syb,
containers,
time,
network,
random,
mtl
if impl(ghc>=8.2.2)
other-modules:
Completion
if impl(ghc>=8.0.1)
build-depends:
ghci,
ghc-boot-th
if os(windows)
build-depends:
Win32
else
build-depends:
unix
ghc-options:
-dynamic
test-suite intero-test
default-language:
Haskell2010
type:
exitcode-stdio-1.0
hs-source-dirs:
src/test
main-is:
Main.hs
build-depends:
base,
hspec,
temporary,
process,
transformers,
directory,
regex-compat,
filepath