summaryrefslogtreecommitdiff
path: root/kiki.cabal
diff options
context:
space:
mode:
Diffstat (limited to 'kiki.cabal')
-rw-r--r--kiki.cabal19
1 files changed, 14 insertions, 5 deletions
diff --git a/kiki.cabal b/kiki.cabal
index c79f313..191519c 100644
--- a/kiki.cabal
+++ b/kiki.cabal
@@ -49,20 +49,29 @@ Executable kiki
49 49
50Executable hosts 50Executable hosts
51 Main-is: hosts.hs 51 Main-is: hosts.hs
52 buildable: False 52 Build-Depends: base >=4.6.0.0,
53 c-sources: dotlock.c 53 bytestring,
54 network,
55 kiki
56
57Executable cokiki
58 Main-is: cokiki.hs
59 Build-Depends: base >=4.6.0.0,
60 unix,
61 kiki
54 62
55library 63library
56 hs-source-dirs: lib 64 hs-source-dirs: lib
57 exposed-modules: KeyRing, 65 exposed-modules: KeyRing,
66 Kiki,
58 ScanningParser, 67 ScanningParser,
59 PEM, 68 PEM,
60 DotLock, 69 DotLock,
61 Base58, 70 Base58,
62 CryptoCoins, 71 CryptoCoins,
63 ProcessUtils 72 ProcessUtils,
64 other-modules: Hosts, 73 Hosts
65 TimeUtil, 74 other-modules: TimeUtil,
66 Compat, 75 Compat,
67 FunctorToMaybe 76 FunctorToMaybe
68 77