-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.yaml
60 lines (55 loc) · 1.09 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
# Changed the name here because nixpkgs also includes a vaultenv and we haven't
# figured out how to mask that when we build vaultenv with nix itself.
name: vaultenv-real
version: 0.17.0
synopsis: Runs processes with secrets from HashiCorp Vault
license: BSD3
github: channable/vaultenv
dependencies:
- aeson
- base
- async
- bytestring
- crypton-connection
- containers
- dotenv
- directory
- HsOpenSSL
- http-conduit
- http-client
- http-client-openssl
- megaparsec
- network-uri
- optparse-applicative
- parser-combinators
- retry
- text
- unordered-containers
- unix
- utf8-string
- optparse-applicative
ghc-options: -threaded -Wall -Werror
library:
source-dirs: src
executables:
vaultenv:
main: Main.hs
source-dirs: app
dependencies:
- vaultenv-real
tests:
vaultenv-test:
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- vaultenv-real
- hspec
- hspec-discover
- hspec-expectations
- directory
- QuickCheck
- quickcheck-instances