File: yesod-static.cabal

package info (click to toggle)
haskell-yesod-static 1.6.1.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 204 kB
  • sloc: haskell: 1,381; makefile: 2
file content (127 lines) | stat: -rw-r--r-- 4,419 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
name:            yesod-static
version:         1.6.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.10
build-type:      Simple
homepage:        http://www.yesodweb.com/
description:     API docs and the README are available at <http://www.stackage.org/package/yesod-static>
extra-source-files:
  sample.hs
  sample-embed.hs
  test/*.hs
  test/fs/bar/baz
  test/fs/tmp/ignored
  test/fs/.ignored
  test/fs/foo
  test/embed-dir/foo
  test/embed-dir/lorem.txt
  test/embed-dir/abc/def.txt
  ChangeLog.md
  README.md

library
    default-language: Haskell2010
    build-depends:   base                  >= 4.10     && < 5
                   , async
                   , attoparsec            >= 0.10
                   , base64-bytestring     >= 0.1.0.1
                   , blaze-builder         >= 0.3
                   , bytestring            >= 0.9.1.4
                   , conduit               >= 1.3
                   , containers            >= 0.2
                   , cryptonite            >= 0.11
                   , cryptonite-conduit    >= 0.1
                   , css-text              >= 0.1.2
                   , data-default
                   , directory             >= 1.0
                   , file-embed            >= 0.0.4.1  && < 0.5
                   , filepath              >= 1.3
                   , hashable              >= 1.1
                   , hjsmin
                   , http-types            >= 0.7
                   , memory
                   , mime-types            >= 0.1
                   , process
                   , template-haskell
                   , text                  >= 0.9
                   , transformers          >= 0.2.2
                   , unix-compat           >= 0.2
                   , unordered-containers  >= 0.2
                   , wai                   >= 1.3
                   , wai-app-static        >= 3.1
                   , yesod-core            >= 1.6      && < 1.7

    exposed-modules: Yesod.Static
                     Yesod.EmbeddedStatic
                     Yesod.EmbeddedStatic.Generators
                     Yesod.EmbeddedStatic.Types
                     Yesod.EmbeddedStatic.Css.AbsoluteUrl

    other-modules:   Yesod.EmbeddedStatic.Internal
                     Yesod.EmbeddedStatic.Css.Util

    ghc-options:     -Wall
    other-extensions: TemplateHaskell

test-suite tests
    default-language: Haskell2010
    hs-source-dirs: ., test
    main-is: tests.hs
    type: exitcode-stdio-1.0
    cpp-options:   -DTEST_EXPORT
    other-modules:   EmbedDevelTest
                     EmbedProductionTest
                     EmbedTestGenerator
                     FileGeneratorTests
                     GeneratorTestUtil
                     Yesod.EmbeddedStatic
                     Yesod.EmbeddedStatic.Generators
                     Yesod.EmbeddedStatic.Internal
                     Yesod.EmbeddedStatic.Types
                     Yesod.Static
                     YesodStaticTest
    build-depends:   base
                   , hspec >= 1.3
                   , yesod-test >= 1.6
                   , wai-extra
                   , HUnit

                   -- copy from above
                   , async
                   , base64-bytestring
                   , bytestring
                   , conduit
                   , containers
                   , cryptonite
                   , cryptonite-conduit
                   , data-default
                   , directory
                   , file-embed
                   , filepath
                   , hjsmin
                   , http-types
                   , memory
                   , mime-types
                   , process
                   , template-haskell
                   , text
                   , transformers
                   , unix-compat
                   , unordered-containers
                   , wai
                   , wai-app-static
                   , yesod-core
                   , rio

    ghc-options:     -Wall -threaded
    other-extensions: TemplateHaskell

source-repository head
  type:     git
  location: https://github.com/yesodweb/yesod