packages feed

haste-perch-0.1.0.4: haste-perch.cabal

name:                haste-perch
version:             0.1.0.4
synopsis:            Create, navigate and modify the DOM tree with composable syntax, with the haste compiler
description:         see the description at the homepage.
                     This version add JQuery-like DOM manipulation

homepage:            https://github.com/agocorona/haste-perch
license:             GPL-3
license-file:        LICENSE
author:              Alberto G. Corona
maintainer:          agocorona@gmail.com
bug-reports:         https://github.com/agocorona/haste-perch/issues
category:            Web
build-type:          Simple
extra-source-files:  README.md, Main.hs
cabal-version:       >=1.10

extra-source-files: Main.hs, Main.html

source-repository head
    type: git
    location: http://github.com/agocorona/haste-perch

Flag Haste-inst
  Description: either if it is being compiled with haste-inst or with cabal
  Default: False

library

  exposed-modules:      Haste.Perch

 if flag(haste-inst)
  build-depends:        base >4.0 && <5,
                        transformers,
                        haste-lib
 else
  build-depends:        base >4.0 && <5,
                        transformers,
                        haste-compiler

  -- hs-source-dirs:
  default-language:    Haskell2010