forked from ndmitchell/hoogle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhoogle.cabal
77 lines (71 loc) · 2.15 KB
/
hoogle.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
cabal-version: >= 1.10
build-type: Simple
name: hoogle
version: 5.0
license: BSD3
license-file: LICENSE
category: Development
author: Neil Mitchell <[email protected]>
maintainer: Neil Mitchell <[email protected]>
copyright: Neil Mitchell 2004-2015
synopsis: Haskell API Search
description:
Hoogle is a Haskell API search engine, which allows you to
search many standard Haskell libraries by either function name,
or by approximate type signature.
homepage: http://hoogle.haskell.org/
bug-reports: https://github.com/ndmitchell/hoogle/issues
tested-with: GHC==7.10.1, GHC==7.8.4, GHC==7.6.3
extra-source-files:
README.md
CHANGES.txt
misc/tag-rename.txt
cbits/*.h
cbits/*.c
data-files:
misc/tag-rename.txt
source-repository head
type: git
location: https://github.com/ndmitchell/hoogle.git
executable hoogle
main-is: Main.hs
hs-source-dirs: src
default-language: Haskell98
build-depends:
base > 4 && < 5,
bytestring, filepath, directory, containers, text, transformers,
deepseq, utf8-string, time, old-locale, vector, binary, QuickCheck,
extra >= 1.1, js-jquery, js-flot, uniplate, cmdargs,
tar, zlib, mmap,
network, conduit, conduit-extra, http-conduit, wai, http-types, warp, wai-logger,
haskell-src-exts >= 1.16 && < 1.17
c-sources: cbits/text_search.c
include-dirs: cbits
includes: include.h
install-includes: include.h
cc-options: -std=c99
ghc-options: -fno-state-hack
other-modules:
Action.CmdLine
Action.Generate
Action.Search
Action.Server
Action.Test
Input.Cabal
Input.Download
Input.Hoogle
Input.Reorder
Input.Set
Input.Type
Output.Items
Output.Names
Output.Tags
Output.Types
Query
General.Conduit
General.Log
General.Store
General.Str
General.Template
General.Util
General.Web