-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskellbr-website.cabal
65 lines (61 loc) · 1.74 KB
/
haskellbr-website.cabal
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
name: haskellbr-website
version: 0.0.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE.md
copyright: 2015 Pedro Tacla Yamada <[email protected]>
maintainer: Pedro Tacla Yamada <[email protected]>
synopsis: TODO
description:
TODO
category: TODO
author: Pedro Tacla Yamada <[email protected]>
tested-with: GHC ==7.8 GHC ==7.6
extra-source-files:
README.md
library
exposed-modules:
Haskellbr.Website
build-depends: Spock -any
, base ==4.*
, bytestring
, lucid -any
, transformers >= 0.4.2.0
, wai-middleware-static
default-language: Haskell2010
hs-source-dirs: lib
ghc-prof-options: -auto-all -prof
ghc-options: -Wall
executable haskellbr-website
main-is: Main.hs
build-depends: Spock -any
, base -any
, bytestring
, haskellbr-website -any
, lucid -any
, transformers >= 0.4.2.0
, wai-middleware-static
default-language: Haskell2010
hs-source-dirs: bin
ghc-prof-options: -auto-all -prof
ghc-options: -Wall
test-suite hspec
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends: HUnit -any
, QuickCheck -any
, Spock -any
, base -any
, bytestring
, haskellbr-website -any
, hspec ==2.*
, lucid -any
, transformers >= 0.4.2.0
, wai-middleware-static
default-language: Haskell2010
hs-source-dirs: lib test
other-modules:
Haskellbr.Website
Haskellbr.WebsiteSpec
ghc-options: -Wall -Werror