-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathzmcat.cabal
48 lines (44 loc) · 1.45 KB
/
zmcat.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
name: zmcat
version: 0.2
synopsis:
Command-line tool for ZeroMQ.
Description:
ZeroMQ is a handy way to communicate between applications:
.
[Rationale:] Zmcat is an handy command-line tool to debug or communicate
with ZeroMQ applications from the shell.
One use of zmcat is to easily audit, monitor, add cron-jobs shell scripts
which speak zmq.
.
[Limitations:]
A limitation is that Zmcat only supports printable text. Support for
random binary streams will come later.
.
license: BSD3
license-file: LICENSE
author: Lucas DiCioccio
maintainer: [email protected]
copyright: Copyright (c) 2013 Lucas DiCioccio
category: Network
build-type: Simple
cabal-version: >=1.8
homepage: https://github.com/lucasdicioccio/zmcat
bug-reports: https://github.com/lucasdicioccio/zmcat/issues
source-repository head
type: git
location: https://github.com/lucasdicioccio/zmcat
library
hs-source-dirs: src
ghc-options: -Wall
ghc-prof-options: -auto-all
exposed-modules: Network.Zmcat
build-depends: bytestring,
base >= 4.5.1.0 && < 5,
zeromq4-haskell >= 0.6.3
executable zmcat
main-is: bin/Zmcat.hs
build-depends: base >= 4.5.1.0 && < 5,
zmcat,
bytestring
ghc-options: -Wall -rtsopts
ghc-prof-options: -auto-all