-
Notifications
You must be signed in to change notification settings - Fork 4
/
diagrams-haddock.cabal
90 lines (86 loc) · 4 KB
/
diagrams-haddock.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
name: diagrams-haddock
version: 0.4.1.2
synopsis: Preprocessor for embedding diagrams in Haddock documentation
description: diagrams-haddock is a tool for compiling embedded inline
diagrams code in Haddock documentation, for an
easy way to spice up your documentation with
diagrams. Just create some diagrams code using
special markup, run diagrams-haddock, and ensure
the resulting image files are installed along
with your documentation. For complete
documentation and examples, see
<https://github.com/diagrams/diagrams-haddock/blob/master/README.md>.
.
For a good example of a package making use of
diagrams-haddock, see the diagrams-contrib
package
(<http://hackage.haskell.org/package/diagrams%2Dcontrib>).
homepage: https://diagrams.github.io/
license: BSD3
license-file: LICENSE
author: Brent Yorgey
maintainer: diagrams-discuss@googlegroups.com
bug-reports: https://github.com/diagrams/diagrams-haddock/issues
category: Graphics
build-type: Simple
cabal-version: 1.18
extra-source-files: README.md, diagrams/*.svg
extra-doc-files: diagrams/*.svg, CHANGES.md
tested-with: GHC ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.3 || ==9.8.1
Source-repository head
type: git
location: git://github.com/diagrams/diagrams-haddock.git
library
exposed-modules: Diagrams.Haddock
other-modules: Paths_diagrams_haddock
build-depends: base >= 4.4 && < 4.20,
filepath >= 1.4 && < 1.5,
directory >= 1.3 && < 1.4,
mtl >= 2.0 && < 2.4,
containers >= 0.4 && < 0.7,
split >= 0.2 && < 0.3,
bytestring >= 0.9 && < 0.13,
strict >= 0.3 && < 0.6,
parsec >= 3 && < 3.2,
haskell-src-exts >= 1.18 && < 1.24,
svg-builder >= 0.1 && < 0.2,
diagrams-builder >= 0.5 && < 0.9,
diagrams-lib >= 1.4 && < 1.5,
diagrams-svg >= 1.4 && < 1.5,
lens >= 3.8 && < 5.3,
linear >= 1.10 && < 1.23,
cpphs >= 1.15 && < 1.21,
unliftio >= 0.2.12 && < 0.3,
uniplate >= 1.6 && < 1.7,
text >= 0.11 && < 2.2,
base64-bytestring >= 1 && < 1.3,
ansi-terminal >= 0.5 && < 1.1
hs-source-dirs: src
other-extensions: TemplateHaskell
default-language: Haskell2010
Executable diagrams-haddock
main-is: diagrams-haddock.hs
other-modules: Paths_diagrams_haddock
build-depends: base >= 4.4 && < 4.20,
directory >= 1.3 && < 1.4,
filepath >= 1.4 && < 1.5,
diagrams-haddock,
cmdargs >= 0.8 && < 0.11,
Cabal >= 2.2 && < 3.11,
cpphs >= 1.15
hs-source-dirs: tools
default-language: Haskell2010
Test-suite diagrams-haddock-tests
type: exitcode-stdio-1.0
main-is: Tests.hs
build-depends: base,
containers >= 0.4 && < 0.7,
QuickCheck >= 2.4 && < 2.15,
tasty >= 0.8 && < 1.6,
tasty-quickcheck >= 0.8 && < 0.11,
parsec >= 3 && < 3.2,
lens >= 3.8 && < 5.3,
haskell-src-exts >= 1.18 && < 1.24,
diagrams-haddock
hs-source-dirs: test
default-language: Haskell2010