-
Notifications
You must be signed in to change notification settings - Fork 2
/
cabal-hoogle.cabal
84 lines (76 loc) · 2.48 KB
/
cabal-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
78
79
80
81
82
83
84
cabal-version: 3.0
name: cabal-hoogle
version: 3.10.0.0
synopsis: generate hoogle database for cabal project and dependencies
description:
Please see the README on GitHub at <https://github.com/kokobd/cabal-hoogle>
bug-reports: https://github.com/kokobd/cabal-hoogle/issues
license: BSD-3-Clause
author: kokobd <[email protected]>
maintainer: kokobd <[email protected]>
stability: experimental
copyright: (c) 2022 kokobd
category: Development
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/kokobd/cabal-hoogle
library
build-depends:
, base >=4.14 && <5
, Cabal >=3.10 && <3.14
, cabal-install >=3.10 && <3.14
, Cabal-syntax >=3.10 && <3.14
, co-log-core >=0.2 && <0.4
, containers >=0.6 && <0.8
, directory ^>=1.3
, extra ^>=1.7
, filepath >=1.4.2 && <1.6
, hoogle ^>=5.0.18
, lens >=5 && <6
, optparse-applicative >=0.16 && <1
, regex-tdfa ^>=1.3
, string-interpolate ^>=0.3
, text ^>=1.2.4 || >=2.0 && <2.2
, time >=1.10 && <2
, transformers ^>=0.5.6 || ^>=0.6
, typed-process >=0.2.10 && <0.2.13
default-language: Haskell2010
ghc-options: -Wall
hs-source-dirs: src
default-extensions:
OverloadedStrings
QuasiQuotes
exposed-modules: Hoogle.Cabal
other-modules:
Hoogle.Cabal.Command
Hoogle.Cabal.Command.ActAsSetup
Hoogle.Cabal.Command.Common
Hoogle.Cabal.Command.Generate
Hoogle.Cabal.Command.Run
Hoogle.Cabal.Command.Version
Hoogle.Cabal.Logger
executable cabal-hoogle
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
ghc-options: -threaded -rtsopts
build-depends:
, base
, cabal-hoogle
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Main.hs
other-modules: IntegrationTest
build-depends:
, base
, cabal-hoogle
, silently ^>=1.2.5
, tasty >=1.4 && <1.6
, tasty-hunit ^>=0.10
build-tool-depends: tasty-discover:tasty-discover