packages feed

yesod-comments-0.7: yesod-comments.cabal

name:                yesod-comments
version:             0.7
synopsis:            A generic comments interface for a Yesod application
description:         A generic comments interface for a Yesod application
homepage:            http://github.com/pbrisbin/yesod-comments
license:             BSD3
license-file:        LICENSE
author:              Patrick Brisbin
maintainer:          me@pbrisbin.com
category:            Web, Yesod
build-type:          Simple
cabal-version:       >=1.6

library
  -- Modules exported by the library.
  exposed-modules: Yesod.Comments
                 , Yesod.Comments.Core
                 , Yesod.Comments.Storage
                 , Yesod.Comments.Management
  
  -- Packages needed in order to build this package.
  build-depends: base           >= 4     && < 5
               , text           >= 0.11  && < 0.12
               , bytestring     >= 0.9.1 && < 0.10
               , friendly-time  >= 0.2   && < 0.3
               , gravatar       >= 0.5   && < 0.6
               , persistent     >= 0.9   && < 0.10
               , wai            >= 1.2   && < 1.3
               , yesod          >= 1.0   && < 1.1
               , yesod-auth     >= 1.0   && < 1.1
               , yesod-form     >= 1.0   && < 1.1
               , yesod-markdown >= 0.4   && < 0.5

               , template-haskell
               , directory
               , time
               , old-locale

  ghc-options: -Wall
  
source-repository head
  type:         git
  location:     git://github.com/pbrisbin/yesod-comments.git