-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
134 lines (124 loc) · 2.8 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
name: guardian
version: 0.5.0.0
license: BSD-3-Clause
author: "DeepFlow, Inc."
maintainer: "DeepFlow, Inc."
copyright: "(c) 2021-2023, DeepFlow, Inc."
github: deepflowinc/guardian
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
synopsis: The border guardian for your package dependencies
category: Development
description:
Guardian secures your Haskell monorepo package dependency boundary.
Please read [README.md](https://github.com/deepflowinc/guardian#readme) for more details.
flags:
cabal:
description: Enables Cabal adapter
manual: true
default: true
stack:
description: Enables Cabal adapter
manual: true
default: true
test-cabal-plan:
description: Enables testcases for custom+cabal-plan
manual: true
default: true
test-graphmod:
description: Enables testcases for custom+cabal-plan
manual: true
default: true
ghc-options:
- -Wall
- -Wunused-packages
data-dir: data
dependencies:
- base >= 4.7 && < 5
library:
source-dirs: src
dependencies:
- aeson
- algebraic-graphs
- bytestring-trie
- case-insensitive
- containers
- dlist
- generic-lens
- githash
- hashable
- indexed-traversable
- indexed-traversable-instances
- language-dot
- optparse-applicative
- parsec
- path
- path-io
- regex-applicative-text
- rio
- semigroups
- text
- template-haskell
- transformers
- typed-process
- unordered-containers
- validation-selective
- vector
- yaml
when:
- condition: flag(cabal)
then:
dependencies:
- cabal-install
- Cabal-syntax
- Cabal
cpp-options: [-DENABLE_CABAL]
other-modules:
- Development.Guardian.Graph.Adapter.Cabal.Enabled
else:
other-modules:
- Development.Guardian.Graph.Adapter.Cabal.Disabled
- condition: flag(stack)
then:
dependencies:
- stack >= 2.9
- Cabal
cpp-options: [-DENABLE_STACK]
other-modules:
- Development.Guardian.Graph.Adapter.Stack.Enabled
else:
other-modules:
- Development.Guardian.Graph.Adapter.Stack.Disabled
tests:
guardian-test:
when:
- condition: flag(test-cabal-plan)
cpp-options: ["-DTEST_CABAL_PLAN"]
- condition: flag(test-graphmod)
cpp-options: ["-DTEST_GRAPHMOD"]
main: Spec.hs
source-dirs: test
build-tools:
- tasty-discover
dependencies:
- algebraic-graphs
- bytestring
- containers
- guardian
- path
- path-io
- rio
- tasty
- tasty-hunit
- tasty-expected-failure
- text
- unordered-containers
- validation-selective
executables:
guardian:
source-dirs: app
main: Main.hs
dependencies:
- guardian