-
Notifications
You must be signed in to change notification settings - Fork 12
/
template.cabal
38 lines (33 loc) · 1.05 KB
/
template.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
name: template
version: 0.2.0.10
description:
Simple string substitution library that supports \"$\"-based
substitution. Meant to be used when Text.Printf or string
concatenation would lead to code that is hard to read but when a
full blown templating system is overkill.
synopsis: Simple string substitution
category: Text
license: BSD3
license-file: LICENSE
author: Johan Tibell <[email protected]>
maintainer: Johan Tibell <[email protected]>
build-type: Simple
cabal-version: >= 1.6
extra-source-files: examples/*.hs
library
exposed-modules: Data.Text.Template
build-depends:
base >= 3.0 && < 5,
mtl >= 1.1 && < 2.3,
text >= 0.7.2 && < 1.3
extensions: CPP
ghc-options: -funbox-strict-fields -Wall
if impl(ghc >= 8)
ghc-options: -Wtabs
cpp-options: -DHAVE_SEMIGROUP
else
if impl(ghc >= 6.8)
ghc-options: -fwarn-tabs
source-repository head
type: git
location: https://github.com/tibbe/template