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
|