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 66 67 68 69 70 71 72 73 74 75 76 77 78
|
name: hastache
version: 0.6.1
license: BSD3
license-file: LICENSE
category: Text
copyright: Sergey S Lymar (c) 2011-2014
author: Sergey S Lymar <sergey.lymar@gmail.com>
maintainer: Daniil Frumin <dan at covariant.me>
stability: experimental
synopsis: Haskell implementation of Mustache templates
cabal-version: >= 1.8
homepage: http://github.com/lymar/hastache
bug-reports: http://github.com/lymar/hastache/issues
build-type: Simple
description:
Haskell implementation of Mustache templates (<http://mustache.github.com/>).
.
See homepage for examples of usage: <http://github.com/lymar/hastache>
extra-source-files:
tests/partFile
tests/RunTest.sh
tests/test.hs
README.md
ChangeLog
executable mkReadme
main-is: mkReadme.hs
build-depends: hastache, process,
base >=4 && <4.10
,bytestring
,mtl
,transformers
,directory
,filepath
,text
,containers
,syb
,blaze-builder
,ieee754
library
exposed-modules:
Text.Hastache
Text.Hastache.Context
build-depends:
base >=4 && <4.10
,bytestring
,mtl
,transformers
,directory
,filepath
,text
,containers
,syb
,blaze-builder
,ieee754
source-repository head
type: git
location: http://github.com/lymar/hastache
test-suite test-hastache
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: tests
build-depends:
hastache
,base >=4 && <4.10
,directory
,mtl
,HUnit
,text
,bytestring
,syb
|