forked from diagrams/diagrams-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
diagrams-svg.cabal
52 lines (48 loc) · 1.91 KB
/
diagrams-svg.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
Name: diagrams-svg
Version: 0.6
Synopsis: SVG backend for diagrams drawing EDSL.
Homepage: http://projects.haskell.org/diagrams/
License: BSD3
License-file: LICENSE
Author: Felipe Lessa, Deepak Jois
Maintainer: deepak.jois@gmail.com
Bug-reports: http://github.com/diagrams/diagrams-svg/issues
Stability: Experimental
Category: Graphics
Build-type: Simple
Cabal-version: >=1.10
Description:
This package provides a modular backend for rendering diagrams
created with the diagrams EDSL using SVG. It uses
@blaze-svg@ to be a fast, pure-Haskell backend.
.
More documentation: Github README : <https://github.com/diagrams/diagrams-svg/blob/master/README>
Source-repository head
type: git
location: http://github.com/diagrams/diagrams-svg
Library
Exposed-modules: Diagrams.Backend.SVG
Diagrams.Backend.SVG.CmdLine
Other-modules: Graphics.Rendering.SVG
Hs-source-dirs: src
Build-depends: base >= 4.3 && < 4.7
, old-time
, process
, directory
, filepath
, mtl >= 1 && < 2.2
, bytestring >= 0.9 && < 1.0
, vector-space >= 0.7 && < 0.9
, colour
, diagrams-core >= 0.6 && < 0.7
, diagrams-lib >= 0.6 && < 0.7
, monoid-extras >= 0.2 && < 0.3
, blaze-svg >= 0.3.3
, cmdargs >= 0.6 && < 0.11
, split >= 0.1.2 && < 0.3
, time
if !os(windows)
cpp-options: -DCMDLINELOOP
Build-depends: unix >= 2.4 && < 2.7
Ghc-options: -Wall
Default-language: Haskell2010