-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathssh-key-generator.cabal
57 lines (54 loc) · 1.9 KB
/
ssh-key-generator.cabal
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
name: ssh-key-generator
version: 0.1.0.0
synopsis: Deterministic SSH key generator
homepage: https://github.com/mithrandi/ssh-key-generator
license: MIT
license-file: LICENSE
author: Tristan Seligmann
maintainer: [email protected]
category: Cryptography
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: SSH.Agent,
SSH.Key,
SSH.Types,
SSH.Key.Derived,
Argh
build-depends: base,
binary,
bytestring >= 0.10.4.0,
base64-bytestring,
cryptohash
default-language: Haskell2010
default-extensions: OverloadedStrings, ViewPatterns
ghc-options: -Wall -Werror
extra-libraries: sodium
executable ssh-key-generator
main-is: KeyTool.hs
hs-source-dirs: app
build-depends: base,
unix,
optparse-applicative >= 0.7.0,
bytestring,
directory,
entropy,
ssh-key-generator
-- hs-source-dirs:
default-language: Haskell2010
default-extensions: OverloadedStrings, ViewPatterns
ghc-options: -Wall -Werror
executable agent-tool
main-is: AgentTool.hs
hs-source-dirs: app
build-depends: base,
optparse-applicative >= 0.7.0,
ssh-key-generator,
conduit,
conduit-combinators,
conduit-extra,
binary,
bytestring,
containers
default-language: Haskell2010
default-extensions: OverloadedStrings, ViewPatterns