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
|
Name: xcb-types
Version: 0.7.0
Cabal-Version: >= 1.6
Synopsis: Parses XML files used by the XCB project
Description: This package provides types which mirror the structures
used in the XCB code generation XML files.
.
See project http://xcb.freedesktop.org/ for more information about the XCB
project.
.
The XML files describe the data-types, events and requests used by the
X Protocol, and are used to auto-generate large parts of the XCB project.
.
This package parses these XML files into Haskell data structures.
.
If you want to do something with these XML descriptions but don't want
to learn XSLT, this package should help.
.
This version of xcb-types is intended to fully parse the X Protocol
description version 1.4.
License: BSD3
License-file: LICENSE
Author: Antoine Latter
Maintainer: Antoine Latter <aslatter@gmail.com>
Homepage: http://community.haskell.org/~aslatter/code/xcb-types
Build-type: Simple
Category: Data
Library
Build-depends: base == 4.*,
xml == 1.3.*,
pretty == 1.0.* || == 1.1.*,
mtl >= 2.0 && < 2.3,
containers >= 0.5
Exposed-modules: Data.XCB,
Data.XCB.Types,
Data.XCB.Pretty,
Data.XCB.FromXML
Other-modules: Data.XCB.Utils
Ghc-Options: -Wall
|