-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscmdoc.cabal
79 lines (69 loc) · 2.29 KB
/
scmdoc.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
cabal-version: 3.0
name: scmdoc
version: 0.1.0
synopsis: R7RS Scheme documentation tool
description: Inline documentation tool for R7RS Scheme based on source code comments
license: AGPL-3.0-only
license-file: LICENSE
author: Sören Tempel
maintainer: [email protected]
category: Development
build-type: Simple
extra-doc-files: README.md
common warnings
ghc-options: -Wall
library
import: warnings
exposed-modules: SchemeDoc
, SchemeDoc.Types
, SchemeDoc.Error
, SchemeDoc.Parser.R7RS
, SchemeDoc.Format.Variable
, SchemeDoc.Format.Syntax
, SchemeDoc.Format.Formatter
, SchemeDoc.Format.Procedure
, SchemeDoc.Format.Record
, SchemeDoc.Format.Library
, SchemeDoc.Format.Types
, SchemeDoc.Format.Util
other-modules: SchemeDoc.Parser.Number
, SchemeDoc.Parser.Util
hs-source-dirs: src
default-language: Haskell2010
build-depends:
base >=4.15.0.0 && <4.20.0.0,
parsec ^>=3.1.15.1,
blaze-html ^>=0.9.1.2,
cmark-gfm ^>=0.2.5,
text
executable scmdoc
import: warnings
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
build-depends:
base >=4.15.0.0 && <4.20.0.0,
parsec ^>=3.1.15.1,
directory ^>=1.3.8.0,
filepath ^>=1.4.100.0,
blaze-html ^>=0.9.1.2,
optparse-applicative >=0.16.1 && <0.17,
text,
scmdoc
test-suite scmdoc-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
other-modules: Parser
, Library
, Record
, Formatter
, Util
build-depends:
base >=4.15.0.0 && <=4.18.0.0,
tasty ^>=1.4.2.3,
tasty-hunit ^>=0.10.0.3,
parsec ^>=3.1.15.1,
text,
scmdoc