-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpipes-zeromq4.cabal
110 lines (101 loc) · 3.63 KB
/
pipes-zeromq4.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
name: pipes-zeromq4
version: 0.3.0.0
synopsis: Pipes integration for ZeroMQ messaging
homepage: https://github.com/peddie/pipes-zeromq4
bug-reports: https://github.com/peddie/pipes-zeromq4/issues
license: BSD3
license-file: LICENSE
author: Matthew Peddie <[email protected]>
maintainer: Matthew Peddie <[email protected]>
copyright: (c) 2015 Matthew Peddie
category: Network, Control, Pipes
build-type: Simple
cabal-version: >=1.10
description: {
<https://hackage.haskell.org/package/pipes Pipes> integration for
<http://zeromq.org/ ZeroMQ> using the
<https://hackage.haskell.org/package/zeromq4-haskell zeromq4-haskell bindings>.
.
This package is very basic. I am new to the @Pipes@ family of APIs
and would be overjoyed to receive feedback.
}
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.1.*
library
exposed-modules: Pipes.ZMQ4
build-depends: base >=4.6 && <5
, zeromq4-haskell >=0.6 && <0.7
, bytestring >=0.10 && <0.11
, semigroups >=0.16 && <0.19
, pipes >=4.1 && <4.4
, pipes-safe >=2.2 && <2.3
hs-source-dirs: src
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/peddie/pipes-zeromq4
flag examples
description: Build usage examples
default: False
executable proxy
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: proxy.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, pipes-zeromq4
, pipes >=4.1 && <4.2
, pipes-safe >=2.2 && <2.3
, zeromq4-haskell >=0.6 && <0.7
, bytestring >= 0.10 && < 0.11
ghc-options: -O2 -rtsopts -threaded
executable client
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: client.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, pipes-zeromq4
, pipes >=4.1 && <4.2
, pipes-safe >=2.2 && <2.3
, zeromq4-haskell >=0.6 && <0.7
, bytestring >= 0.10 && < 0.11
, semigroups >=0.16 && <0.19
ghc-options: -O2 -rtsopts -threaded
executable server
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: server.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, pipes-zeromq4
, pipes >=4.1 && <4.2
, pipes-safe >=2.2 && <2.3
, zeromq4-haskell >=0.6 && <0.7
, bytestring >= 0.10 && < 0.11
, semigroups >=0.16 && <0.19
ghc-options: -O2 -rtsopts -threaded
executable serverPipeline
if flag(examples)
Buildable: True
else
Buildable: False
hs-source-dirs: examples
main-is: serverPipeline.hs
default-language: Haskell2010
build-depends: base >= 4.5 && < 5
, pipes-zeromq4
, pipes >=4.1 && <4.2
, pipes-safe >=2.2 && <2.3
, zeromq4-haskell >=0.6 && <0.7
, bytestring >= 0.10 && < 0.11
, semigroups >=0.16 && <0.19
ghc-options: -O2 -rtsopts -threaded