forked from danstiner/hfmt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hfmt.cabal
85 lines (80 loc) · 2.78 KB
/
hfmt.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
name: hfmt
version: 0.1.1
synopsis: Haskell source code formatter
description: Inspired by gofmt. Built using hlint, hindent, and stylish-haskell.
license: MIT
license-file: LICENSE
author: Daniel Stiner
maintainer: Daniel Stiner <[email protected]>
stability: Experimental
homepage: http://github.com/danstiner/hfmt
bug-reports: http://github.com/danstiner/hfmt/issues
category: Language
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.9.2
tested-with: GHC >= 7.10
library
Hs-Source-Dirs: src
Exposed-Modules: Language.Haskell.Format
, Language.Haskell.Format.Utilities
, Language.Haskell.Source.Enumerator
Other-Modules: Language.Haskell.Format.Internal
, Language.Haskell.Format.Definitions
, Language.Haskell.Format.HIndent
, Language.Haskell.Format.HLint
, Language.Haskell.Format.Stylish
, Path.Find
GHC-Options: -Wall
Build-Depends: base >= 4.8 && < 5
, bytestring
, Cabal
, directory
, exceptions
, filepath
, haskell-src-exts
, hindent >= 5.2.3
, hlint >= 1.9
, HUnit
, path
, path-io
, pipes
, stylish-haskell >= 0.7
, text
, transformers
, yaml
executable hfmt
Hs-Source-Dirs: app
Main-Is: Main.hs
Other-Modules: Actions
, OptionsParser
, Types
GHC-Options: -Wall
Build-Depends: base == 4.*
, hfmt
, ansi-wl-pprint
, Diff
, optparse-applicative
, pipes
, pretty
test-suite self-formatting-test
Type: exitcode-stdio-1.0
Hs-Source-Dirs: test/self-formatting
Main-Is: Spec.hs
Build-Depends: base == 4.*
, hfmt
, HUnit
, test-framework
, test-framework-hunit
test-suite pure-test
Type: exitcode-stdio-1.0
Hs-Source-Dirs: test/pure
Main-Is: Spec.hs
Build-Depends: base == 4.*
, hfmt
, HUnit
, test-framework
, test-framework-hunit
source-repository head
type: git
location: git://github.com:danstiner/hfmt.git