Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 23 additions & 26 deletions diagrams-builder.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -2,31 +2,27 @@ name: diagrams-builder
version: 0.6.0.1
synopsis: hint-based build service for the diagrams graphics EDSL.

description: @diagrams-builder@ provides backend-agnostic tools for
dynamically turning code into rendered diagrams,
using the @hint@ wrapper to the GHC API. It
supports conditional recompilation using hashing
of diagrams source code, to avoid recompiling
code that has not changed. It is useful for
creating tools which compile diagrams code
embedded in other documents. For example, it is
used by the @BlogLiterately-diagrams@ package (a
plugin for @BlogLiterately@) to compile diagrams
embedded in Markdown-formatted blog posts.
.
Executables specific to the cairo, SVG, and postscript
backends are included (more executables specific
to other backends may be included in the future).
All take an input file and an expression to
render, and output an image file. If you want
these executables you must explicitly enable the
@-fcairo@, @-fsvg@, or @-fps@ flags.
.
A LaTeX package, @diagrams-latex.sty@, is also
provided in the @latex/@ directory of the source
distribution, which renders diagrams code found
within @diagram@ environments. Note that
@diagrams-latex.sty@ is licensed under the GPL.
description:
@diagrams-builder@ provides backend-agnostic tools for dynamically
turning code into rendered diagrams, using the @hint@ wrapper to the
GHC API. It supports conditional recompilation using hashing of
diagrams source code, to avoid recompiling code that has not changed.
It is useful for creating tools which compile diagrams code embedded
in other documents. For example, it is used by the
@BlogLiterately-diagrams@ package (a plugin for @BlogLiterately@) to
compile diagrams embedded in Markdown-formatted blog posts.
.
Executables specific to the cairo, SVG, and postscript backends are
included (more executables specific to other backends may be included
in the future). All take an input file and an expression to render,
and output an image file. If you want these executables you must
explicitly enable the @-fcairo@, @-fsvg@, or @-fps@ flags.
.
A LaTeX package, @diagrams-latex.sty@, is also provided in the
@latex/@ directory of the source distribution, which renders diagrams
code found within @diagram@ environments. Note that
@diagrams-latex.sty@ is licensed under the GPL.

homepage: http://projects.haskell.org/diagrams
license: BSD3
license-file: LICENSE
Expand Down Expand Up @@ -59,7 +55,8 @@ library
cmdargs >= 0.6 && < 0.11,
lens >= 4.0 && < 4.7,
hashable >= 1.1 && < 1.3,
exceptions >= 0.3 && < 0.7
exceptions >= 0.3 && < 0.7,
temporary >= 1.2 && < 1.3
hs-source-dirs: src
default-language: Haskell2010
other-extensions: StandaloneDeriving,
Expand Down
Loading