-
Notifications
You must be signed in to change notification settings - Fork 5
/
diagrams-gtk.cabal
30 lines (28 loc) · 1.19 KB
/
diagrams-gtk.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
name: diagrams-gtk
version: 1.4
synopsis: Backend for rendering diagrams directly to GTK windows
description: An optional add-on to the diagrams-cairo package
which allows rendering diagrams directly to GTK windows.
homepage: http://projects.haskell.org/diagrams/
license: BSD3
license-file: LICENSE
author: John Lato
maintainer: [email protected]
copyright: John Lato
category: Graphics
build-type: Simple
cabal-version: >=1.10
tested-with: GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.4 || ==9.8.1
extra-source-files: CHANGES.markdown, README.markdown
source-repository head
type: git
location: http://github.com/diagrams/diagrams-gtk.git
library
exposed-modules: Diagrams.Backend.Gtk
build-depends: base >= 4.2 && < 4.20,
diagrams-lib >= 1.3 && < 1.5,
diagrams-cairo >= 1.3 && < 1.5,
gtk >= 0.12.0 && < 0.16,
cairo >= 0.12.4 && < 0.14
hs-source-dirs: src
default-language: Haskell2010