File: foo.cabal

package info (click to toggle)
haskell-snap-templates 1.0.0.2-5
  • links: PTS
  • area: main
  • in suites: trixie
  • size: 236 kB
  • sloc: haskell: 313; sh: 49; makefile: 5
file content (35 lines) | stat: -rw-r--r-- 1,126 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
Name:                projname
Version:             0.1
Synopsis:            Project Synopsis Here
Description:         Project Description Here
License:             AllRightsReserved
Author:              Author
Maintainer:          maintainer@example.com
Stability:           Experimental
Category:            Web
Build-type:          Simple
Cabal-version:       >=1.2

Flag old-base
  default: False
  manual: False

Executable projname
  hs-source-dirs: src
  main-is: Tutorial.lhs

  Build-depends:
    base                      >= 4.4     && < 5,
    bytestring                >= 0.9.1   && < 0.11,
    lens                      >= 3.7.6   && < 4.18,
    monad-control             >= 1.0     && < 1.1,
    mtl                       >= 2       && < 2.3,
    snap                      >= 1.0     && < 1.2,
    snap-core                 >= 1.0     && < 1.1,
    snap-server               >= 1.0     && < 1.2

  if impl(ghc >= 6.12.0)
    ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2
                 -fno-warn-unused-do-bind
  else
    ghc-options: -threaded -Wall -fwarn-tabs -funbox-strict-fields -O2