packages feed

kafka-device-spacenav-1.0.2.1: kafka-device-spacenav.cabal

name         : kafka-device-spacenav
version      : 1.0.2.1
synopsis     : Linux SpaceNavigator events via a Kafka message broker
description  : This package contains functions for passing Linux device events from a SpaceNavigator \<<http://www.3dconnexion.com/products/spacemouse/spacenavigator.html>\> 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     : Hardware
build-type   : Simple
cabal-version: >= 1.10
stability    : Production
homepage     : https://bitbucket.org/functionally/kafka-device-spacenav
bug-reports  : https://bwbush.atlassian.net/projects/HKAFDEV/issues/
package-url  : https://bitbucket.org/functionally/kafka-device-spacenav/downloads/kafka-device-spacenav-$version.tar.gz

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

source-repository head
  type    : git
  location: https://bitbucket.org/functionally/kafka-device-spacenav
 
library
  exposed-modules : Network.UI.Kafka.SpaceNav
                    Network.UI.Kafka.SpaceNav.Interpretation
                    System.Hardware.Linux.Input
                    System.Hardware.Linux.SpaceNav
  build-depends   : base         >= 4.8 && < 5
                  , aeson        >= 1.3.1
                  , binary       >= 0.8.5.1
                  , bytestring   >= 0.10.8
                  , cereal       >= 0.5.7
                  , kafka-device >= 1.0.2.1
  hs-source-dirs  : src
  ghc-options     : -Wall
  default-language: Haskell2010

executable kafka-device-spacenav
  main-is         : Main.hs
  other-modules   : Network.UI.Kafka.SpaceNav
                    Network.UI.Kafka.SpaceNav.Interpretation
                    System.Hardware.Linux.Input
                    System.Hardware.Linux.SpaceNav
  build-depends   : base         >= 4.8 && < 5
                  , aeson        >= 1.3.1
                  , binary       >= 0.8.5.1
                  , bytestring   >= 0.10.8
                  , cereal       >= 0.5.7
                  , kafka-device >= 1.0.2.1
                  , yaml         >= 0.8.32
  hs-source-dirs  : src
  ghc-options     : -Wall
  default-language: Haskell2010