-
Notifications
You must be signed in to change notification settings - Fork 1
/
halberd.cabal
78 lines (73 loc) · 3.43 KB
/
halberd.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
name: halberd
version: 0.1.2.9
license: BSD3
license-file: LICENSE
author: Erik Hesselink, Simon Meier, Tom Lokhorst, Roman Cheplyaka
maintainer: hesselink@gmail.com
category: Development
build-type: Simple
cabal-version: >=1.8
synopsis: A tool to generate missing import statements for Haskell modules.
description: This tool uses the Haskell Suite [0] to determine
the unbound variables and types in your source
code, and generate import statements for them. If
there are multiple choices, it provides a simple
interactive menu for you to choose from. See the
home page for more details.
[0] https://github.com/haskell-suite
homepage: http://github.com/haskell-suite/halberd/
extra-source-files: CHANGELOG, README.md
library
build-depends: base >= 4.5 && < 4.8
, containers >= 0.4 && < 0.6
, haskell-packages == 0.2.*
, haskell-names >= 0.2 && < 0.5
, haskell-src-exts >= 1.14 && < 1.17
, Cabal >= 1.16 && < 1.22
, mtl >= 2.0 && < 2.3
, safe == 0.3.*
, syb >= 0.3 && < 0.5
hs-source-dirs: src
ghc-options: -Wall
exposed-modules: Halberd.ChosenImports
, Halberd.CollectNames
, Halberd.LookupTable
, Halberd.Suggestions
, Halberd.Types
other-modules: Data.Tuple.Utils
, Language.Haskell.Exts.Utils
executable halberd
build-depends: base >= 4.5 && < 4.8
, Cabal >= 1.16 && < 1.22
, halberd
, haskell-names >= 0.2 && < 0.5
, haskell-packages == 0.2.*
, haskell-src-exts >= 1.14 && < 1.17
, mtl >= 2.0 && < 2.3
, safe == 0.3.*
, tagged >= 0.4 && < 0.8
hs-source-dirs: exe
main-is: Halberd.hs
ghc-options: -Wall
other-modules: Halberd.UI
Test-suite halberd-tests
build-depends: base >= 4.5 && < 4.8
, Cabal >= 1.16 && < 1.22
, containers >= 0.4 && < 0.6
, halberd
, HUnit == 1.2.*
, test-framework == 0.8.*
, test-framework-hunit == 0.3.*
, haskell-names >= 0.2 && < 0.5
, haskell-packages == 0.2.*
, haskell-src-exts >= 1.14 && < 1.17
, tagged >= 0.4 && < 0.8
, split == 0.2.*
, mtl >= 2.0 && < 2.3
hs-source-dirs: tests
main-is: Runner.hs
type: exitcode-stdio-1.0
ghc-options: -Wall
Source-Repository head
Type: git
Location: git://github.com/haskell-suite/halberd.git