File: project-template.cabal

package info (click to toggle)
haskell-project-template 0.2.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 88 kB
  • sloc: haskell: 202; makefile: 3
file content (53 lines) | stat: -rw-r--r-- 1,963 bytes parent folder | download | duplicates (4)
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
name:                project-template
version:             0.2.1.0
synopsis:            Specify Haskell project templates and generate files
description:         See initial blog post for explanation: <http://www.yesodweb.com/blog/2012/09/project-templates>
homepage:            https://github.com/fpco/haskell-ide
license:             BSD3
license-file:        LICENSE
author:              Michael Snoyman
maintainer:          michael@fpcomplete.com
category:            Development
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md ChangeLog.md

library
  default-language:    Haskell2010
  exposed-modules:     Text.ProjectTemplate
  build-depends:       base                         >= 4          && < 5
                     , base64-bytestring
                     , text                         >= 0.11
                     , bytestring                   >= 0.9
                     , transformers                 >= 0.2
                     , mtl                          >= 2.0
                     , conduit                      >= 1.2.8      && < 1.4
                     , conduit-extra
                     , resourcet                    >= 0.4.3
                     , containers
                     , filepath
                     , directory
  ghc-options:     -Wall

test-suite test
    default-language:    Haskell2010
    hs-source-dirs: test
    main-is: Spec.hs
    other-modules: Text.ProjectTemplateSpec
    type: exitcode-stdio-1.0
    build-depends:   base
                   , project-template
                   , hspec >= 1.3
                   , transformers
                   , QuickCheck
                   , base64-bytestring
                   , conduit
                   , text
                   , bytestring
                   , containers
                   , resourcet
    ghc-options:     -Wall

source-repository head
  type:     git
  location: git://github.com/fpco/haskell-ide.git