-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhookmark.cabal
218 lines (186 loc) · 4.28 KB
/
hookmark.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
cabal-version: 1.12
name: hookmark
version: 1.4.0.1
synopsis: Browser independent bookmark manager
description:
Please see the README on GitHub at <https://github.com/neosimsim/hookmark#readme>
category: cli-tool
homepage: https://gitlab.com/neosimsim/hookmark
bug-reports: https://gitlab.com/neosimsim/hookmark/issues
author: Alexander Ben Nasrallah
maintainer: [email protected]
copyright: 2019,2020 © Alexander Ben Nasrallah
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
assets/*.svg
assets/style.css
ChangeLog.md
README.md
templates/*.hamlet
source-repository head
type: git
location: https://gitlab.com/neosimsim/hookmark.git
flag static
description: Statically link the application
manual: True
default: False
flag pedantic
description: Build with -Wall -Werror
manual: True
default: False
library
exposed-modules:
Data.Path
Distribution.Git
Git
Hookmark.IO
Hookmark.Parser
Hookmark.Types
Hookmark.Web
System.Editor
System.FilePath.Extra
other-modules:
Control.Monad.Extra
Debug.Trace.Phony
Paths_hookmark
System.Directory.Extra
hs-source-dirs: src
if flag(pedantic)
ghc-options: -Wall -Werror
build-depends:
base >=4.7 && <5
, bytestring
, containers
, cookie
, directory
, either
, filepath
, http-types
, megaparsec
, non-empty-text
, process
, shakespeare
, template-haskell
, text
, typed-process
, utf8-string
, yesod
, yesod-form
, yesod-static
default-language: Haskell2010
executable hookmark
main-is: Main.hs
other-modules:
Options
Options.Parser
Options.Types
Paths_hookmark
hs-source-dirs: hookmark
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(pedantic)
ghc-options: -Wall -Werror
build-depends:
base >=4.7 && <5
, bytestring
, directory
, filepath
, hookmark
, non-empty-text
, optparse-applicative
, raw-strings-qq
, template-haskell
, temporary
, text
, typed-process
if flag(static)
ld-options: -pthread -static
ghc-options: -static
default-language: Haskell2010
executable hookmark-web
main-is: Main.hs
other-modules:
Options
Paths_hookmark
hs-source-dirs: hookmark-web
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(pedantic)
ghc-options: -Wall -Werror
build-depends:
base >=4.7 && <5
, filepath
, hookmark
, optparse-applicative
, yesod
if flag(static)
ld-options: -pthread -static
ghc-options: -static
default-language: Haskell2010
test-suite regression
type: exitcode-stdio-1.0
main-is: Regression.hs
other-modules:
Paths_hookmark
System.Directory.Recursive
Test.Hspec.Expectations.Diff
Test.Hspec.Expectations.Internal
Test.Hspec.Expectations.Process.Typed
hs-source-dirs: regression
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(pedantic)
ghc-options: -Wall -Werror
build-depends:
base >=4.7 && <5
, bytestring
, Diff
, directory
, either
, extra
, file-embed
, filepath
, hspec
, hspec-contrib
, hspec-expectations
, HUnit
, megaparsec
, nicify-lib
, non-empty-text
, process
, QuickCheck
, template-haskell
, text
, typed-process
, unix
, unliftio
, utf8-string
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Hookmark.IO.Arbitrary
Hookmark.Types.Arbitrary
Paths_hookmark
Test.QuickCheck.Gen.Extra
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
if flag(pedantic)
ghc-options: -Wall -Werror
build-depends:
base >=4.7 && <5
, bytestring
, directory
, either
, filepath
, hookmark
, hspec
, non-empty-text
, process
, QuickCheck
, template-haskell
, text
, typed-process
, unix
, utf8-string
default-language: Haskell2010