-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkafka-device.cabal
73 lines (68 loc) · 2.9 KB
/
kafka-device.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
name : kafka-device
version : 1.0.2.1
synopsis : UI device events via a Kafka message broker
description : This package contains functions for passing UI device events to topics on a Kafka message broker \<<https://kafka.apache.org/>\>. Also see \<<https://hackage.haskell.org/package/kafka-device-joystick/>\>, \<<https://hackage.haskell.org/package/kafka-device-glut/>\>, \<<https://hackage.haskell.org/package/kafka-device-spacenav/>\>, \<<https://hackage.haskell.org/package/kafka-device-leap/>\>.
license : MIT
license-file : LICENSE
author : Brian W Bush <[email protected]>
maintainer : Brian W Bush <[email protected]>
copyright : (c) 2016-19 Brian W Bush
category : Hardware
build-type : Simple
cabal-version: >= 1.10
stability : Production
homepage : https://bitbucket.org/functionally/kafka-device
bug-reports : https://bwbush.atlassian.net/projects/HKAFDEV/issues/
package-url : https://bitbucket.org/functionally/kafka-device/downloads/kafka-device-$version.tar.gz
extra-source-files: ReadMe.md
default.nix
source-repository head
type : git
location: https://bitbucket.org/functionally/kafka-device
library
exposed-modules : Network.UI.Kafka
Network.UI.Kafka.Interpretation
Network.UI.Kafka.Keyboard
Network.UI.Kafka.Types
build-depends : base >= 4.10 && < 5
, aeson >= 1.3.1
, binary >= 0.8.5
, bytestring >= 0.10.8
, cereal >= 0.5.7
, linear >= 1.20.8
, milena >= 0.5.2
, mtl >= 2.2.2
hs-source-dirs : src
ghc-options : -Wall
default-language: Haskell2010
executable kafka-device
main-is : Main.hs
other-modules : Network.UI.Kafka
Network.UI.Kafka.Types
build-depends : base >= 4.10 && < 5
, aeson >= 1.3.1
, binary >= 0.8.5
, bytestring >= 0.10.8
, cereal >= 0.5.7
, linear >= 1.20.8
, milena >= 0.5.2
, mtl >= 2.2.2
hs-source-dirs : src
ghc-options : -Wall -threaded
default-language: Haskell2010
executable kafka-device-keyboard
main-is : MainKeyboard.hs
other-modules : Network.UI.Kafka
Network.UI.Kafka.Keyboard
Network.UI.Kafka.Types
build-depends : base >= 4.10 && < 5
, aeson >= 1.3.1
, binary >= 0.8.5
, bytestring >= 0.10.8
, cereal >= 0.5.7
, linear >= 1.20.8
, milena >= 0.5.2
, mtl >= 2.2.2
hs-source-dirs : src
ghc-options : -Wall -threaded
default-language: Haskell2010