-
Notifications
You must be signed in to change notification settings - Fork 103
/
package.yaml
78 lines (72 loc) · 1.52 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
72
73
74
75
76
77
78
spec-version: 0.36.0
name: hpack
version: 0.37.0
synopsis: A modern format for Haskell packages
description: See README at <https://github.com/sol/hpack#readme>
author: Simon Hengel <[email protected]>
maintainer: Simon Hengel <[email protected]>
github: sol/hpack
category: Development
extra-source-files:
- CHANGELOG.md
- resources/**/*
ghc-options: -Wall -fno-warn-incomplete-uni-patterns
dependencies:
- base >= 4.13 && < 5
- bytestring
- deepseq
- directory >= 1.2.5.0
- filepath
- Glob >= 0.9.0
- text
- containers
- unordered-containers
- yaml >= 0.10.0
- aeson >= 1.4.3.0
- scientific
- Cabal >= 3.0.0.0 && < 3.13
- pretty
- bifunctors
- crypton
- transformers
- mtl
- http-types
- http-client
- http-client-tls >= 0.3.6.2
- vector
- infer-license >= 0.2.0 && < 0.3
# See https://github.com/haskell/network/pull/552.
when:
condition: impl(ghc >= 9.4.5) && os(windows)
dependencies: network >= 3.1.2.9
library:
source-dirs: src
exposed-modules:
- Hpack
- Hpack.Config
- Hpack.Render
- Hpack.Yaml
- Hpack.Error
generated-other-modules: Paths_hpack
executable:
main: Main.hs
source-dirs: driver
dependencies:
- hpack
tests:
spec:
cpp-options: -DTEST
main: Spec.hs
source-dirs:
- test
- src
generated-other-modules: Paths_hpack
dependencies:
- hspec == 2.*
- QuickCheck
- temporary
- mockery >= 0.3
- interpolate
- template-haskell
- HUnit >= 1.6.0.0
build-tools: hspec-discover