-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.yaml
71 lines (63 loc) · 1.24 KB
/
package.yaml
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
name: stitch
version: '0.6.0.0'
synopsis: lightweight CSS DSL
description: a tiny css preprocessor dsl for haskell – check out the readme at <https://github.com/intolerable/stitch>
category: Web
author: Fraser Murray
maintainer: fraser.m.murray@gmail.com
copyright: © Fraser Murray 2015
license: BSD3
git: git://github.com/intolerable/stitch.git
flags:
werror:
description: Enable -Werror
manual: true
default: false
extra-source-files:
- test/css/*.css
default-extensions:
- OverloadedStrings
- GeneralizedNewtypeDeriving
ghc-options:
- -Wall
when:
condition: flag(werror)
then:
ghc-options:
- -Werror
else:
ghc-options: [" "]
library:
source-dirs: src
exposed-modules:
- Control.Monad.Stitch
- Control.Monad.Trans.Stitch
- Stitch
- Stitch.Combinators
- Stitch.Example
- Stitch.Render
- Stitch.Types
- Stitch.Types.Selector
dependencies:
- base >=4.6 && <5
- containers
- text
- transformers
tests:
test:
main: Spec.hs
source-dirs: test
dependencies:
- base ==4.*
- Cabal >=1.16.0
- stitch
- hspec
- text
benchmarks:
bench:
main: Main.hs
source-dirs: bench
dependencies:
- base ==4.*
- stitch
- criterion