-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple-src-utils.cabal
94 lines (86 loc) · 2.27 KB
/
simple-src-utils.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
name: simple-src-utils
version: 0.1
cabal-version: >= 1.8
build-type: Simple
synopsis: source code editing utilities
description:
Collection of small utilities to manipulate source code.
category: Haskell, Development
license: BSD3
license-file: LICENSE
author: Evan Laforge
maintainer: Evan Laforge <[email protected]>
stability: stable
tested-with:
GHC ==7.8.4, GHC ==7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1
data-files:
README.md
TODO
vimrc
homepage: https://github.com/elaforge/simple-src-utils
source-repository head
type: git
location: git://github.com/elaforge/simple-src-utils.git
executable string-literal
main-is: StringLiteral.hs
hs-source-dirs: src
other-modules: Util
build-depends:
base >= 3 && < 5,
text,
extra
ghc-options:
-main-is StringLiteral -Wall -fno-warn-name-shadowing
test-suite test-string-literal
type: exitcode-stdio-1.0
main-is: StringLiteral_test.hs
hs-source-dirs: src
other-modules: Util, StringLiteral
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-type-defaults
build-depends:
base >= 3 && < 5,
text,
extra,
tasty, tasty-hunit
executable cmt
main-is: Cmt.hs
hs-source-dirs: src
other-modules: Util
build-depends:
base >= 3 && < 5,
text,
extra
ghc-options:
-main-is Cmt -Wall -fno-warn-name-shadowing
test-suite test-cmt
type: exitcode-stdio-1.0
main-is: Cmt_test.hs
hs-source-dirs: src
other-modules: Util, Cmt
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-type-defaults
build-depends:
base >= 3 && < 5,
text,
extra,
tasty, tasty-hunit
executable fmt-signature
main-is: FmtSignature.hs
hs-source-dirs: src
other-modules: Util
build-depends:
base >= 3 && < 5,
text,
extra
ghc-options:
-main-is FmtSignature -Wall -fno-warn-name-shadowing
test-suite test-fmt-signature
type: exitcode-stdio-1.0
main-is: FmtSignature_test.hs
hs-source-dirs: src
other-modules: FmtSignature
ghc-options: -Wall -fno-warn-name-shadowing -fno-warn-type-defaults
build-depends:
base >= 3 && < 5,
text,
extra,
tasty, tasty-hunit