File: xml-hamlet.cabal

package info (click to toggle)
haskell-xml-hamlet 0.5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 104 kB
  • sloc: haskell: 772; makefile: 3
file content (44 lines) | stat: -rw-r--r-- 1,516 bytes parent folder | download
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
Name:                xml-hamlet
Version:             0.5.0.1
Synopsis:            Hamlet-style quasiquoter for XML content
Homepage:            http://www.yesodweb.com/
License:             BSD3
License-file:        LICENSE
Author:              Michael Snoyman
Maintainer:          michael@snoyman.com
Category:            Text
Build-type:          Simple
Description:         Hamlet-style quasiquoter for XML content
Extra-source-files:  test/main.hs ChangeLog.md README.md

Cabal-version:       >=1.8

Library
  Exposed-modules:     Text.Hamlet.XML
  Other-modules:       Text.Hamlet.XMLParse
  
  Build-depends:       base                       >= 4        && < 5
                     , shakespeare                >= 1.0      && < 2.2
                     , xml-conduit                >= 1.0
                     , text                       >= 0.10
                     , template-haskell
                     , parsec                     >= 2.0      && < 3.2
                     , containers

  Ghc-options:         -Wall

test-suite test
  main-is:             main.hs
  hs-source-dirs:      test
  type:                exitcode-stdio-1.0
  ghc-options:         -Wall
  build-depends:       hspec >= 1.3
                     , HUnit
                     , base >= 4 && < 5
                     , shakespeare
                     , xml-conduit
                     , text
                     , template-haskell
                     , parsec
                     , xml-hamlet
                     , containers