forked from motus/haskell-zookeeper-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zookeeper.cabal
33 lines (30 loc) · 952 Bytes
/
zookeeper.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
Name: zookeeper
Version: 0.0.2
Description: Haskell bindings for zookeeper
License: OtherLicense
License-file: LICENSE
Author: Sergiy Matusevych
Maintainer: Sergiy Matusevych
Build-Type: Simple
Cabal-Version: >=1.8
Library
Ghc-Options: -threaded -O2 -Wall
Extra-Libraries: zookeeper_mt
Build-Depends: base >= 4 && < 5
, containers
, bytestring == 0.9.*
hs-source-dirs: src
Exposed-modules: Zookeeper, Zookeeper.LionTamer
Other-modules: Zookeeper.LionTamer.Types
Extensions: DeriveDataTypeable
Executable ZooClient
Ghc-Options: -threaded -O2 -Wall
Extra-Libraries: zookeeper_mt
Build-Depends: base >= 4 && < 5
, zookeeper
, containers
, bytestring == 0.9.*
hs-source-dirs: src
Main-is: ZooClient.hs
Other-modules: Zookeeper
Extensions: DeriveDataTypeable