packages feed

hleap-0.1.2.6: hleap.cabal

name:                hleap
version:             0.1.2.6
synopsis:            Web Socket interface to Leap Motion controller
description:         This Haskell package contains functions for interfacing with Leap Motion controllers, \<<https://www.leapmotion.com/product/desktop>\>.  It is based on the WebSocket API \<<https://developer.leapmotion.com/documentation/javascript/supplements/Leap_JSON.html>\> and inspired by \<<https://bitbucket.org/turion/jedinight/>\>.

license:             MIT
license-file:        LICENSE
author:              Brian W Bush <consult@brianwbush.info>
maintainer:          Brian W Bush <consult@brianwbush.info>
copyright:           (c) 2016 Brian W Bush
category:            Hardware
build-type:          Simple
cabal-version:       >= 1.10
stability:           Stable
homepage:            https://bitbucket.org/bwbush/hleap
bug-reports:         https://bwbush.atlassian.net/projects/HLEAP/issues/
package-url:         https://bitbucket.org/bwbush/hleap/downloads/hleap-0.1.2.6.tar.gz
author:              Brian W Bush
maintainer:          b.w.bush@acm.org

extra-source-files:  ReadMe.md

source-repository head
  type: git
  location: https://bwbush@bitbucket.org/bwbush/hleap.git
 
library
  build-depends:       base                 >= 4.8 && < 5
               ,       aeson                >= 0.10.0.0
               ,       containers           >= 0.5.6.2
               ,       data-default         >= 0.5.3
               ,       mtl                  >= 2.2.1
               ,       text                 >= 1.2.1.3
               ,       unordered-containers >= 0.2.5.1
               ,       websockets           >= 0.9.6.1
  exposed-modules:     System.Hardware.Leap
                       System.Hardware.Leap.Event
                       System.Hardware.Leap.Event.Gesture
                       System.Hardware.Leap.Event.Hand
                       System.Hardware.Leap.Event.Pointable
                       System.Hardware.Leap.Types
  hs-source-dirs:   src
  exposed:          True
  buildable:        True
  ghc-options:      -Wall
  default-language: Haskell2010

executable leap-tracker
  main-is:             Main.hs
  build-depends:       base >=4.8 && <4.9
               ,       aeson
               ,       containers
               ,       data-default
               ,       mtl
               ,       text
               ,       unordered-containers
               ,       websockets
  hs-source-dirs:      src
  ghc-options:         -Wall
  default-language:    Haskell2010