-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathhoodle-render.cabal
65 lines (63 loc) · 2.24 KB
/
hoodle-render.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
Name: hoodle-render
Version: 1.0
Synopsis: Hoodle file renderer
Description: Rendering library using cairo for hoodle file format
License: BSD3
License-file: LICENSE
Author: Ian-Woo Kim
Maintainer: Ian-Woo Kim <ianwookim@gmail.com>
Category: Graphics
Build-Type: Simple
Cabal-Version: 2.0
Source-repository head
type: git
location: http://www.github.com/wavewave/hoodle-render
Library
hs-source-dirs: src
-- TODO: We use the "head" partial function yet, so disable -Werror for now.
ghc-options: -j -Wall
ghc-prof-options: -fprof-auto -fprof-cafs
Build-Depends:
base == 4.*,
base64-bytestring >= 0.1,
bytestring >= 0.9,
cairo >= 0.13.0.3,
containers >= 0.4,
directory,
filepath,
gd >= 3000.7,
hashable,
hoodle-util,
hoodle-types,
lens >= 2.5,
monad-loops >= 0.3,
mtl > 2,
-- poppler >= 0.14,
stm,
strict >= 0.3,
svgcairo >= 0.12,
time,
transformers >= 0.3,
unix >= 2.5,
unordered-containers,
uuid >= 1.2,
gtk3 >= 0.14
Exposed-Modules:
Graphics.Hoodle.Render
Graphics.Hoodle.Render.Background
Graphics.Hoodle.Render.Debug
Graphics.Hoodle.Render.Engine
Graphics.Hoodle.Render.Generic
Graphics.Hoodle.Render.Highlight
Graphics.Hoodle.Render.Item
Graphics.Hoodle.Render.Primitive
Graphics.Hoodle.Render.Type
Graphics.Hoodle.Render.Type.Background
Graphics.Hoodle.Render.Type.HitTest
Graphics.Hoodle.Render.Type.Hoodle
Graphics.Hoodle.Render.Type.Item
Graphics.Hoodle.Render.Type.Renderer
Graphics.Hoodle.Render.Type.Select
Graphics.Hoodle.Render.Util
Graphics.Hoodle.Render.Util.HitTest
Hoodle.Util.Process