-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.yaml
58 lines (52 loc) · 1.11 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
name: th-printf
version: 0.8
synopsis: Quasiquoters for printf
description: Quasiquoters for string and text printf
author: Jude Taylor
maintainer: [email protected]
tested-with: GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.7, GHC == 9.4.5, GHC == 9.6.2
extra-source-files:
- CHANGELOG.md
category: Text
github: pikajude/th-printf
ghc-options: -Wall
flags:
werror:
description: Build with -Werror
default: False
manual: True
when:
- condition: flag(werror)
ghc-options: -Werror
dependencies:
- base >= 4.12 && < 5
library:
source-dirs: [src, parser]
exposed-modules:
- Language.Haskell.Printf
- Language.Haskell.Printf.Lib
dependencies:
- charset
- containers
- microlens-platform
- mtl
- parsec
- semigroups
- template-haskell
- th-lift
- transformers
- text
- dlist
- integer-logarithms
tests:
format:
source-dirs: tests/printf
main: format.hs
dependencies:
- HUnit
- QuickCheck
- hspec
- template-haskell
- th-printf
- text
ghc-options: -fno-warn-type-defaults