yesod/yesod.cabal
2010-12-26 11:44:35 +02:00

48 lines
2.0 KiB
Plaintext

name: yesod
version: 0.7.0
license: BSD3
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>
maintainer: Michael Snoyman <michael@snoyman.com>
synopsis: Creation of type-safe, RESTful web applications.
description:
Yesod is a framework designed to foster creation of RESTful web application that have strong compile-time guarantees of correctness. It also affords space efficient code and portability to many deployment backends, from CGI to stand-alone serving.
.
The Yesod documentation site <http://docs.yesodweb.com/> has much more information, tutorials and information on some of the supporting packages, like Hamlet and web-routes-quasi.
category: Web, Yesod
stability: Stable
cabal-version: >= 1.6
build-type: Simple
homepage: http://docs.yesodweb.com/
extra-source-files: scaffold/*.cg
flag test
description: Build the executable to run unit tests
default: False
library
build-depends: base >= 4 && < 5
, yesod-core >= 0.7 && < 0.8
, monad-peel >= 0.1 && < 0.2
, transformers >= 0.2 && < 0.3
, wai >= 0.3 && < 0.4
, hamlet >= 0.7 && < 0.8
exposed-modules: Yesod
ghc-options: -Wall
executable yesod
build-depends: parsec >= 2.1 && < 4
, text >= 0.11 && < 0.12
, bytestring >= 0.9 && < 0.10
, time >= 1.1.4 && < 1.3
, template-haskell
, directory >= 1.0 && < 1.2
ghc-options: -Wall
main-is: scaffold.hs
other-modules: CodeGen
extensions: TemplateHaskell
source-repository head
type: git
location: git://github.com/snoyberg/yesod.git