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
|
name: xml2html
version: 0.1.2.3
license: BSD3
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: blaze-html instances for xml-conduit types
category: XML
stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://github.com/snoyberg/xml
Description: blaze-html instances for xml-conduit types
flag blaze_html_0_5
description: use blaze-html 0.5 and blaze-markup 0.5
default: True
library
build-depends: base >= 4 && < 5
, text >= 0.5 && < 1
, xml-conduit >= 0.5 && < 0.8
, containers >= 0.2
if flag(blaze_html_0_5)
build-depends:
blaze-html >= 0.5 && < 0.6
, blaze-markup >= 0.5.1 && < 0.6
else
build-depends:
blaze-html >= 0.4 && < 0.5
exposed-modules: Text.XML.Xml2Html
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/snoyberg/xml.git
|