forked from mihaimaruseac/hindent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hindent.cabal
100 lines (94 loc) · 3.35 KB
/
hindent.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
name: hindent
version: 4.6.4
synopsis: Extensible Haskell pretty printer
description: Extensible Haskell pretty printer. Both a library and an executable.
.
See the Github page for usage\/explanation: <https://github.com/chrisdone/hindent>
license: BSD3
stability: Unstable
license-file: LICENSE
author: Chris Done, Andrew Gibiansky, Tobias Pflug, Pierre Radermecker
maintainer: [email protected]
copyright: 2014 Chris Done
category: Development
build-type: Simple
cabal-version: >=1.8
homepage: http://www.github.com/chrisdone/hindent
bug-reports: https://github.com/chrisdone/hindent/issues
data-files: elisp/hindent.el
extra-source-files: README.md
benchmarks/BigDeclarations.hs
test/chris-done/expected/*.exp
test/chris-done/tests/*.test
test/gibiansky/expected/*.exp
test/gibiansky/tests/*.test
test/fundamental/expected/*.exp
test/fundamental/tests/*.test
test/johan-tibell/expected/*.exp
test/johan-tibell/tests/*.test
source-repository head
type: git
location: https://github.com/chrisdone/hindent
library
hs-source-dirs: src/
ghc-options: -Wall -O2
exposed-modules: HIndent
HIndent.Types
HIndent.Pretty
HIndent.Comments
HIndent.Styles.Fundamental
HIndent.Styles.ChrisDone
HIndent.Styles.JohanTibell
HIndent.Styles.Gibiansky
HIndent.Styles.Cramer
build-depends: base >= 4.7 && <5
, containers
, haskell-src-exts >= 1.17
, monad-loops
, mtl
, text
, transformers
executable hindent
hs-source-dirs: src/main
ghc-options: -Wall -O2
main-is: Main.hs
build-depends: base >= 4 && < 5
, hindent
, text
, descriptive >= 0.7 && < 0.10
, haskell-src-exts
, ghc-prim
, directory
executable hindent-generate-tests
hs-source-dirs: src/main
ghc-options: -Wall -O2
main-is: TestGenerate.hs
build-depends: base >= 4 && < 5
, hindent
, text
, directory
test-suite hspec
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base >= 4 && <5
, hindent
, haskell-src-exts
, monad-loops
, mtl
, text
, hspec
, directory
benchmark hindent-bench
type: exitcode-stdio-1.0
hs-source-dirs: src/main
ghc-options: -Wall -O2 -rtsopts
main-is: Benchmark.hs
build-depends: base >= 4 && < 5
, hindent
, text
, haskell-src-exts
, ghc-prim
, directory
, criterion
, deepseq