-
Notifications
You must be signed in to change notification settings - Fork 7
/
diagrams-qrcode.cabal
46 lines (44 loc) · 1.58 KB
/
diagrams-qrcode.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
name: diagrams-qrcode
version: 1.3
synopsis: Draw QR codes to SVG, PNG, PDF or PS files.
homepage: https://github.com/prowdsponsor/diagrams-qrcode
license: BSD3
license-file: LICENSE
author: Felipe Lessa <[email protected]>
maintainer: Felipe Lessa <[email protected]>
copyright: (c) 2012-2014 Prowdsponsor <[email protected]>
category: Graphics
build-type: Simple
cabal-version: >=1.8
description:
This library is able to draw diagrams of QR codes using the
@diagrams@ library. In order to create the QR code itself, you
may use either the @haskell-qrencode@ library or @qrcode@
library, both are supported. In order to draw and save the
diagram to a file, we suggest using either the @diagrams-svg@
library (pure Haskell, fast, SVG output only) or the
@diagrams-cairo@ library (requires Cairo, supports many
different output targets, including SVG, PNG, PDF, PS and
directly onto a GUI).
.
For an example of how this library may be used, please see the
examples on the source code.
extra-source-files:
README.md
examples/using-haskell-qrencode.hs
examples/using-qrcode.hs
examples/qrcode.svg
source-repository head
type: git
location: git://github.com/prowdsponsor/diagrams-qrcode.git
library
exposed-modules:
Diagrams.QRCode
build-depends:
base >= 4.5 && < 4.9
, array
, colour
, diagrams-core == 1.3.*
, diagrams-lib == 1.3.*
hs-source-dirs: src/
ghc-options: -Wall