-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.yaml
119 lines (113 loc) · 1.59 KB
/
package.yaml
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
name: HooglePlus
version: 0.1.0.0
github: "davidmrdavid/hoogle_plus"
license: BSD3
author: "Zheng Guo"
maintainer: "zhg069@ucsd.edu"
extra-source-files:
- README.md
data-files:
- InternalTypeGen.hs
description: Please see the README
dependencies:
- aeson
- ansi-terminal
- ansi-wl-pprint
- array
- async
- base
- bimap
- bytestring
- Cabal
- cereal
- ChasingBottoms
- cmdargs
- conduit
- conduit-extra
- containers
- directory
- extra
- filepath
- ghc
- ghc-paths
- hashable
- haskell-src-exts
- heap
- hint
- html
- http-conduit
- http-types
- indents
- lens
- logict
- MissingH
- mtl
- packdeps
- parsec
- pqueue
- pretty-simple
- pretty-tree
- process
- QuickCheck
- regex-compat
- regex-posix
- resourcet
- safe
- sort
- split
- stm
- text
- time
- transformers
- transformers-compat
- unordered-containers
- uuid
- vector
- z3
library:
source-dirs:
- src
other-extensions:
- TemplateHaskell
- Rank2Types
- FlexibleInstances
- TypeSynonymInstances
- FlexibleContexts
verbatim:
- "includes: z3.h"
extra-libraries: z3
executables:
hplus:
main: HooglePlus.hs
source-dirs: app
ghc-options:
- -rtsopts
- -O2
dependencies:
- HooglePlus
webapp:
main: Main.hs
source-dirs:
- webapp/app
- webapp/src
ghc-options:
- -O2
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- HooglePlus
- yesod-core
- yesod-form
- yesod-static
- shakespeare
tests:
spec:
main: Spec.hs
source-dirs:
- test
dependencies:
- HooglePlus
- hspec
- hspec-discover
build-tools: hspec-discover