-
Notifications
You must be signed in to change notification settings - Fork 1
/
ozil.cabal
executable file
·167 lines (162 loc) · 4.37 KB
/
ozil.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
cabal-version: 1.12
name: ozil
version: 0.1.0.0
description: Please see the Readme on Github at <https://github.com/theindigamer/ozil#readme>
homepage: https://github.com/theindigamer/ozil#readme
bug-reports: https://github.com/theindigamer/ozil/issues
author: Varun Gandhi
maintainer: [email protected]
copyright: 2018 Varun Gandhi
license: BSD3
build-type: Simple
extra-source-files:
Readme.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/theindigamer/ozil
library
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DeriveGeneric
DeriveDataTypeable
DeriveFunctor
DeriveFoldable
DeriveTraversable
StandaloneDeriving
FlexibleInstances
FlexibleContexts
MultiParamTypeClasses
FunctionalDependencies
TypeFamilies
BangPatterns
LambdaCase
MultiWayIf
TupleSections
OverloadedStrings
NamedFieldPuns
PatternSynonyms
ghc-options: -Wall
-Wcompat
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
-Wnoncanonical-monoid-instances
-Wredundant-constraints
-Wno-type-defaults
-funbox-strict-fields
build-depends:
aeson
, base
, brick >= 0.37.2
, bytestring
, containers
, deepseq
, directory
, extra
, filepath
, fsnotify
, hashable
, megaparsec < 7
, microlens
, microlens-mtl
, microlens-th
, mtl
, optparse-applicative
, process
, template-haskell
, text
, unordered-containers
, vector
, vty
, word-wrap
, yaml
, zlib
exposed-modules:
Brick.FastMarkup
Brick.Widgets.GDialog
Commons
Control.Lens.Extra
Data.Focused
Data.Pair
Development.BuildSystem
Help.Page
Help.Page.Help
Help.Page.Internal
Help.Page.Lenses
Help.Page.Man
Help.Page.Man.Internal
Help.Page.Man.Parse
Help.Ozil
Help.Ozil.Cmd
Help.Ozil.Cmd.Parser
Help.Ozil.Cmd.Types
Help.Ozil.Config
Help.Ozil.Config.Default
Help.Ozil.Config.Types
Help.Ozil.Config.Types.Internal
Help.Ozil.Config.Watch
Help.Ozil.Console.Text
Help.Ozil.Core
Help.Ozil.Error
Help.Ozil.KeyBinding
Help.Ozil.Startup
Help.Ozil.Startup.Core
Help.Subcommand
Syntax.RawString
System.Man
System.Man.Parser
System.Man.Types
executable ozil
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: base, ozil
default-language: Haskell2010
test-suite ozil-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs: test
default-extensions: FlexibleInstances
FlexibleContexts
MultiParamTypeClasses
FunctionalDependencies
TypeFamilies
BangPatterns
LambdaCase
NamedFieldPuns
OverloadedStrings
TupleSections
PatternSynonyms
ghc-options: -Wall
-Wcompat
-Wnoncanonical-monad-instances
-Wnoncanonical-monadfail-instances
-Wnoncanonical-monoid-instances
-Wredundant-constraints
-Wno-type-defaults
-funbox-strict-fields
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
base
, ozil
-- transitive
, brick
, word-wrap
, text
, vector
, mtl
, megaparsec
-- testing specific stuff
, hedgehog
, hspec
, tasty
, tasty-discover
, tasty-hedgehog
, tasty-hspec
other-modules:
Brick.FastMarkupSpec
Help.Page.HelpSpec
Help.Page.ManSpec
Help.Page.Man.ParseSpec
default-language: Haskell2010