-
Notifications
You must be signed in to change notification settings - Fork 213
/
dhall-docs.cabal
158 lines (149 loc) · 5.05 KB
/
dhall-docs.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
Name: dhall-docs
Version: 1.0.11
Cabal-Version: >=1.10
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2020 Germán Robayo
Author: Germán Robayo
Maintainer: [email protected]
Bug-Reports: https://github.com/dhall-lang/dhall-haskell/issues
Synopsis: Generate HTML docs from a dhall package
Description:
Use this package if you want to create HTML documentation from your dhall
packages:
.
* See the "Dhall.Docs" module if you want to use this package as a library
.
* Use the @dhall-docs@ program from this package if you want an executable
.
The "Dhall.Docs" module also contains instructions for how to use this package
Category: Compiler
Extra-Source-Files:
CHANGELOG.md
README.md
tasty/data/package/*.md
tasty/data/package/*.txt
tasty/data/package/*.dhall
tasty/data/package/a/*.dhall
tasty/data/package/a/b/*.dhall
tasty/data/package/a/b/c/*.dhall
tasty/data/package/deep/nested/folder/*.dhall
tasty/data/golden/*.md.html
tasty/data/golden/*.txt.html
tasty/data/golden/*.dhall.html
tasty/data/golden/a/*.dhall.html
tasty/data/golden/a/b/*.dhall.html
tasty/data/golden/a/b/c/*.dhall.html
tasty/data/golden/deep/nested/folder/*.dhall.html
tasty/data/golden/*.html
tasty/data/golden/a/*.html
tasty/data/golden/a/b/*.html
tasty/data/golden/a/b/c/*.html
tasty/data/golden/deep/nested/folder/*.html
tasty/data/golden/deep/nested/*.html
tasty/data/comments/empty/*.txt
tasty/data/comments/invalid/*.txt
tasty/data/comments/valid/*.txt
Data-Files:
assets/*.css
assets/*.js
assets/*.svg
man/dhall-docs.1
Data-Dir:
src/Dhall/data
Source-Repository head
Type: git
Location: https://github.com/dhall-lang/dhall-haskell/tree/master/dhall-docs
Flag ghci-data-files
description: To enable use of data-files while running `stack ghci`
default: False
Library
Hs-Source-Dirs: src
Build-Depends:
base >= 4.11.0.0 && < 5 ,
base16-bytestring >= 1.0.0.0 ,
bytestring < 0.13,
containers ,
cryptohash-sha256 ,
directory >= 1.3.0.0 && < 1.4 ,
dhall >= 1.38.0 && < 1.43,
file-embed >= 0.0.10.0 ,
filepath >= 1.4 && < 1.6 ,
lens-family-core >= 1.0.0 && < 2.2 ,
lucid >= 2.9.12 && < 2.12,
mmark >= 0.0.7.0 && < 0.8 ,
-- megaparsec follows SemVer: https://github.com/mrkkrp/megaparsec/issues/469#issuecomment-927918469
megaparsec >= 7 && < 10 ,
path >= 0.7.0 && < 0.10,
-- path-io follows SemVer: https://github.com/mrkkrp/path-io/issues/68
path-io >= 1.6.0 && < 2 ,
prettyprinter >= 1.7.0 && < 1.8 ,
text >= 0.11.1.0 && < 2.2 ,
transformers >= 0.2.0.0 && < 0.7 ,
mtl >= 2.2.1 && < 2.4 ,
optparse-applicative >= 0.14.0.0 && < 0.19
Exposed-Modules:
Dhall.Docs
Dhall.Docs.Core
Other-Modules:
Dhall.Docs.CodeRenderer
Dhall.Docs.Comment
Dhall.Docs.Embedded
Dhall.Docs.Html
Dhall.Docs.Markdown
Dhall.Docs.Store
Dhall.Docs.Util
Paths_dhall_docs
GHC-Options: -Wall
Default-Language: Haskell2010
if flag(ghci-data-files)
Other-Modules: Paths_dhall_docs
else
Cpp-Options: "-DEMBED"
Executable dhall-docs
Hs-Source-Dirs: dhall-docs
Main-Is: Main.hs
Build-Depends:
base ,
dhall ,
dhall-docs
Other-Modules:
Paths_dhall_docs
GHC-Options: -Wall
Default-Language: Haskell2010
Test-Suite doctest
Type: exitcode-stdio-1.0
Hs-Source-Dirs: doctest
Main-Is: Main.hs
GHC-Options: -Wall
Build-Depends:
base ,
directory,
filepath < 1.6 ,
doctest >= 0.7.0
Other-Extensions: OverloadedStrings RecordWildCards
Default-Language: Haskell2010
Test-Suite tasty
Type: exitcode-stdio-1.0
Hs-Source-Dirs: tasty
Main-Is: Main.hs
Build-Depends:
base ,
bytestring ,
containers ,
dhall ,
dhall-docs ,
foldl < 1.5 ,
-- lucid preserves input attribute order since v2.11.0
lucid >= 2.11.0 ,
path ,
path-io ,
pretty >= 1.1.1.1 ,
tasty < 1.6 ,
tasty-silver < 3.4 ,
tasty-hunit >= 0.10 && < 0.11,
turtle >= 1.6 && < 1.7 ,
text
GHC-Options: -Wall
Default-Language: Haskell2010