-
Notifications
You must be signed in to change notification settings - Fork 2
/
pygmalion.cabal
163 lines (157 loc) · 5.05 KB
/
pygmalion.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
name: pygmalion
version: 0.1.0.0
synopsis: A code analysis tool based on libclang
homepage: http://github.com/sfowler/pygmalion
license: BSD3
license-file: LICENSE
author: Seth Fowler <[email protected]>
maintainer: Seth Fowler <[email protected]>
copyright: Copyright (C) 2013 Seth Fowler
category: Development
build-type: Simple
cabal-version: >=1.8
library
ghc-options: -Wall -O -threaded
build-depends: base >= 4,
aeson,
async,
bytestring,
cereal,
cereal-conduit,
cereal-vector,
conduit >= 1.1 && < 1.2,
conduit-extra,
configurator,
containers,
direct-sqlite >= 2.3.11,
directory,
ekg,
filepath,
fgl,
ghc-prim,
--graphviz ==2999.6.0.0,
hashable >= 1.1.2.5 && < 1.3,
hslibvoyeur,
hslogger,
json,
mtl,
network,
network-conduit >= 1.0.2.1,
posix-paths,
process,
safe,
sqlite-simple,
stm,
streaming-commons,
suspend,
text,
time,
timers,
transformers,
tuple,
unix,
unordered-containers,
utf8-string,
vector,
yaml >= 0.8.4,
MissingH
exposed-modules: Control.Concurrent.Chan.Len,
Data.Bool.Predicate,
Pygmalion.Index.Command,
Pygmalion.Index.Extension,
Pygmalion.Index.Manager,
Pygmalion.Index.Request,
Pygmalion.Index.Stream,
Pygmalion.Config,
Pygmalion.Core,
Pygmalion.Database.IO,
Pygmalion.Database.Manager,
Pygmalion.Database.Request,
Pygmalion.Dot,
Pygmalion.File,
Pygmalion.Idle,
Pygmalion.JSON,
Pygmalion.Log,
Pygmalion.Make,
Pygmalion.Metadata,
Pygmalion.RPC.Client,
Pygmalion.RPC.Request,
Pygmalion.RPC.Server
Pygmalion.SourceKind
other-modules: Control.Exception.Labeled,
Pygmalion.Database.Orphans
hs-source-dirs: src
executable pyg
ghc-options: -Wall -O -threaded -rtsopts -with-rtsopts=-N
main-is: Pygmalion.hs
build-depends: base >= 4,
async,
directory,
mtl,
process,
pygmalion,
safe,
utf8-string,
MissingH
hs-source-dirs: tools
executable pygd
ghc-options: -Wall -O -threaded -rtsopts -with-rtsopts=-N -with-rtsopts=-T
main-is: Pygd.hs
build-depends: base >= 4
, async
, containers
, directory
, ekg
, filepath
, fsnotify
, mtl
, pygmalion
, stm
, system-filepath
, time
, utf8-string
, void
, MissingH
hs-source-dirs: tools
flag build-pygindex-clang
description: Build the clang indexer.
default: False
executable pygindex-clang
ghc-options: -Wall -O -threaded -rtsopts -with-rtsopts=-N
main-is: Pygindexclang.hs
if flag(build-pygindex-clang)
buildable: True
build-depends: base >= 4
, bytestring
, containers
, directory
, hashable >= 1.1.2.5 && < 1.3
, LibClang >= 3.4.0 && < 3.5
, MissingH
, mtl
, pygmalion
, safe
, transformers
, unix
, utf8-string
, vector
other-modules: Pygmalion.Index.Source
else
buildable: False
hs-source-dirs: indexers
test-suite pygmalion-hspec
ghc-options: -O -threaded -rtsopts -with-rtsopts=-N
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends: base >= 4,
directory,
haskell-src-meta >=0.6 && <0.7,
hspec >= 1.7.2,
mtl,
process,
pygmalion,
template-haskell,
tuple,
HUnit,
QuickCheck
hs-source-dirs: tests