packages feed

kafka-device-vrpn-1.0.0.0: kafka-device-vrpn.cabal

name         : kafka-device-vrpn
version      : 1.0.0.0
synopsis     : VRPN events via a Kafka message broker
description  : This package contains functions for passing VRPN \<<https://github.com/vrpn/vrpn/wiki>\> events to topics on a Kafka message broker \<<https://kafka.apache.org/>\>.  Also see \<<https://hackage.haskell.org/package/kafka-device/>\>.
license      : MIT
license-file : LICENSE
author       : Brian W Bush <code@functionally.io>
maintainer   : Brian W Bush <code@functionally.io>
copyright    : (c) 2016-19 Brian W Bush
category     : Network
build-type   : Simple
cabal-version: >= 1.10
stability    : Production
homepage     : https://bitbucket.org/functionally/kafka-device-vrpn
bug-reports  : https://bwbush.atlassian.net/projects/HKAFDEV/issues/
package-url  : https://bitbucket.org/functionally/kafka-device-vrpn/downloads/kafka-device-vrpn-$version.tar.gz

extra-source-files: ReadMe.md
                    default.nix

source-repository head
  type    : git
  location: https://bitbucket.org/functionally/kafka-device-vrpn
 
library
  exposed-modules : Network.UI.Kafka.VRPN
  build-depends   : base         >= 4.8 && < 5
                  , kafka-device >= 1.0.0
                  , vrpn         >= 0.3.0
  hs-source-dirs  : src
  ghc-options     : -Wall
  default-language: Haskell2010

executable kafka-device-vrpn
  main-is         : Main.hs
  other-modules   : Network.UI.Kafka.VRPN
  build-depends   : base         >= 4.8 && < 5
                  , kafka-device >= 1.0.0
                  , vrpn         >= 0.3.0
  hs-source-dirs  : src
  ghc-options     : -Wall
  default-language: Haskell2010