76 lines
3.1 KiB
Plaintext
76 lines
3.1 KiB
Plaintext
name: yesod-static
|
|
version: 1.1.0
|
|
license: MIT
|
|
license-file: LICENSE
|
|
author: Michael Snoyman <michael@snoyman.com>
|
|
maintainer: Michael Snoyman <michael@snoyman.com>, Greg Weber <greg@gregweber.info>
|
|
synopsis: Static file serving subsite for Yesod Web Framework.
|
|
category: Web, Yesod
|
|
stability: Stable
|
|
cabal-version: >= 1.8
|
|
build-type: Simple
|
|
homepage: http://www.yesodweb.com/
|
|
description: Static file serving subsite for Yesod Web Framework.
|
|
extra-source-files:
|
|
test/YesodStaticTest.hs
|
|
test/tests.hs
|
|
|
|
library
|
|
build-depends: base >= 4 && < 5
|
|
, containers >= 0.2
|
|
, old-time >= 1.0
|
|
, yesod-core >= 1.1 && < 1.2
|
|
, base64-bytestring >= 0.1.0.1 && < 0.2
|
|
, cereal >= 0.3 && < 0.4
|
|
, bytestring >= 0.9.1.4
|
|
, template-haskell
|
|
, directory >= 1.0 && < 1.2
|
|
, transformers >= 0.2.2 && < 0.4
|
|
, wai-app-static >= 1.3 && < 1.4
|
|
, wai >= 1.3 && < 1.4
|
|
, text >= 0.9 && < 1.0
|
|
, file-embed >= 0.0.4.1 && < 0.5
|
|
, http-types >= 0.7 && < 0.8
|
|
, unix-compat >= 0.2
|
|
, conduit >= 0.5 && < 0.6
|
|
, crypto-conduit >= 0.4 && < 0.5
|
|
, cryptohash >= 0.6.1
|
|
, system-filepath >= 0.4.6 && < 0.5
|
|
exposed-modules: Yesod.Static
|
|
ghc-options: -Wall
|
|
|
|
test-suite tests
|
|
hs-source-dirs: ., test
|
|
main-is: tests.hs
|
|
type: exitcode-stdio-1.0
|
|
cpp-options: -DTEST_EXPORT
|
|
build-depends: base
|
|
, hspec >= 1.2 && < 1.3
|
|
, HUnit
|
|
-- copy from above
|
|
, containers >= 0.2
|
|
, old-time >= 1.0
|
|
, yesod-core
|
|
, base64-bytestring >= 0.1.0.1 && < 0.2
|
|
, cereal >= 0.3 && < 0.4
|
|
, bytestring >= 0.9.1.4
|
|
, template-haskell
|
|
, directory >= 1.0 && < 1.2
|
|
, transformers >= 0.2.2 && < 0.4
|
|
, wai-app-static
|
|
, wai
|
|
, text >= 0.9 && < 1.0
|
|
, file-embed >= 0.0.4.1 && < 0.5
|
|
, http-types
|
|
, unix-compat >= 0.2
|
|
, conduit
|
|
, crypto-conduit
|
|
, cryptohash >= 0.6.1
|
|
, system-filepath
|
|
|
|
ghc-options: -Wall
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/yesodweb/yesod
|