-
Notifications
You must be signed in to change notification settings - Fork 0
/
derpy.cabal
63 lines (59 loc) · 1.88 KB
/
derpy.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
-- derpy.cabal auto-generated by cabal init. For additional options,
-- see
-- http://www.haskell.org/cabal/release/cabal-latest/doc/users-guide/authors.html#pkg-descr.
-- The name of the package.
Name: derpy
Version: 0.1
Synopsis: Basic blog application
-- Description:
Homepage: http://github.com/frio/derp-hs
License: MIT
License-file: LICENSE
Author: frio
Maintainer: [email protected]
-- Copyright:
Category: Web
Build-type: Simple
Cabal-version: >=1.8
Data-dir: src/static
Executable derpy
Main-is: Main.hs
Build-depends: aeson
, base
, blaze-html
, bytestring
, directory
, filepath
, http-types
, mtl
, MissingH
, pandoc==1.9.4.3
, parsec
, scotty
, text
, time
, wai-middleware-static
Ghc-options: -Wall -O2 -static -threaded
Hs-source-dirs: src/hs
Extensions: CPP
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
Build-depends: aeson
, base
, blaze-html
, bytestring
, directory
, filepath
, hspec
, http-types
, mtl
, MissingH
, pandoc==1.9.4.3
, parsec
, scotty
, text
, time
, wai-middleware-static
Hs-source-dirs: src/hs
, test/hs