-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSsh.cabal
44 lines (38 loc) · 980 Bytes
/
Ssh.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
Name: Ssh
Version: 0.0
Description: A toy project to write an SSH client in Haskell.
License: GPL
License-file: LICENSE
Author: Bart Coppens
Maintainer: kde@bartcoppens.be
Build-Type: Simple
Cabal-Version: >=1.2
Source-Repository head
Type: git
Location: git://github.com/bcoppens/HaskellSshClient.git
Flag noPureAES
Description: Nopure use unsafely performed OpenSSL bindings because they are faster for AES encryption. If False, use Crypto's Codec.Encryption.AES
default: True
Executable SshClient
Main-is: SshClient.hs
Build-Depends: base >= 3 && < 5
Hs-Source-Dirs: src
Build-Depends:
base >= 4 && < 5,
binary >= 0.5 && < 1.0,
bytestring,
network,
containers,
unix,
split,
mtl,
transformers,
binary,
Crypto,
dlist,
HsOpenSSL,
SHA,
safe
If flag(noPureAES)
Cpp-Options:
-DNOPURE