forked from commercialhaskell/pantry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
117 lines (107 loc) · 1.96 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: pantry
version: 0.7.0
synopsis: Content addressable Haskell package management
description: Please see the README on GitHub at <https://github.com/commercialhaskell/pantry#readme>
category: Development
author: Michael Snoyman
maintainer: [email protected]
copyright: 2018-2022 FP Complete
license: BSD3
github: commercialhaskell/pantry
extra-source-files:
- README.md
- ChangeLog.md
- attic/hpack-0.1.2.3.tar.gz
- attic/package-0.1.2.3.tar.gz
- attic/symlink-to-dir.tar.gz
dependencies:
- base >=4.10 && < 5
- ansi-terminal
- digest
- rio
- aeson
- text
- unordered-containers
- containers
- path
- transformers
- generic-deriving
- unliftio
- http-conduit
- http-client-tls
- http-download
- http-types
- http-client
- conduit
- bytestring
- network-uri
- hackage-security
- primitive
- vector
- memory
- cryptonite
- cryptonite-conduit
- persistent
- persistent-sqlite >= 2.9.3
- persistent-template
- Cabal >= 3 && < 3.9
- path-io
- rio-orphans
- conduit-extra
- tar-conduit
- time
- unix-compat
- hpack >= 0.31.2
- yaml
- zip-archive
- text-metrics
- resourcet
- rio-prettyprint
- mtl
- filelock
- casa-client
- casa-types
ghc-options:
- -Wall
library:
source-dirs: src/
when:
- condition: 'os(windows)'
then:
source-dirs: src/windows/
else:
source-dirs: src/unix/
exposed-modules:
- Pantry
- Pantry.SHA256
# For testing
- Pantry.Internal
- Pantry.Internal.StaticBytes
# For stackage-server
- Pantry.Internal.Stackage
# For stack
- Pantry.Internal.Companion
- Pantry.Internal.AesonExtended
other-modules:
- Hackage.Security.Client.Repository.HttpLib.HttpClient
- Pantry.Archive
- Pantry.HTTP
- Pantry.HPack
- Pantry.Hackage
- Pantry.Repo
- Pantry.SQLite
- Pantry.Storage
- Pantry.Casa
- Pantry.Tree
- Pantry.Types
tests:
spec:
source-dirs: test
main: Spec.hs
dependencies:
- pantry
- hspec
- exceptions
- hedgehog
- QuickCheck
- raw-strings-qq