packages feed

scotty-hastache-0.2.0: scotty-hastache.cabal

name:                scotty-hastache
version:             0.2.0
homepage:            https://github.com/scotty-web/scotty-hastache
bug-reports:	     https://github.com/scotty-web/scotty-hastache/issues
synopsis:            Easy Mustache templating support for Scotty

description:         This library provides a small templating DSL extension
                     for Scotty via the `hastache` library.  
                     .
                     [Scotty] is a light-weighted Web framework\/router <http://hackage.haskell.org/package/scotty>
                     .
                     [Hashache] is a Haskell implementation of the Mustache templates: <http://mustache.github.io/>, <http://hackage.haskell.org/package/hastache>
                     

license:             BSD3
license-file:        LICENSE
author:              Dan Frumin
maintainer:          difrumin@gmail.com
copyright:           (c) 2013-2014 Dan Frumin <difrumin@gmail.com>
category:            Web
stability:           experimental
build-type:          Simple
cabal-version:       >=1.10

extra-source-files:  changelog
                     examples/hastachetest.hs
                     examples/templates/greet.html

library
  exposed-modules:     Web.Scotty.Hastache
  build-depends:       base            >= 4.4 && < 5,
                       blaze-html      >= 0.6.0.0,
                       blaze-markup    >= 0.5.1.0,
                       containers      >= 0.5.0.0,
                       filepath        >= 1.3.0.0,
                       hastache        >= 0.5.0,
                       http-types      >= 0.7.3.0.1,
                       mtl             >= 2.1.2,
                       scotty          >= 0.6,
                       text            >= 0.11.3.1,
                       wai             >= 1.3.0.1,
                       warp            >= 1.3.4.1


  hs-source-dirs:      src
  GHC-options:         -Wall -fno-warn-orphans
  default-language:    Haskell2010

source-repository head
  type:           git
  location:       git://github.com/scotty-web/scotty-hastache.git