packages feed

dbus-qq-0.1.0: dbus-qq.cabal

Name: dbus-qq
Version: 0.1.0
Synopsis: Quasi-quoter for DBus functions
Description: This package contains a quasi-quoter to automatically convert functions of the form @[Variant] -> [Variant]@ to functions of the actual types, returning a tuple of the results.
License: BSD3
License-file: LICENSE
Author: Paolo Capriotti
Maintainer: p.capriotti@gmail.com
Category: Network
Build-type: Simple
Cabal-version: >=1.8

Source-repository head
    type: git
    location: git://github.com/pcapriotti/dbus-qq.git

Library
    Exposed-modules: DBus.QuasiQuoter
    Build-depends:   base >= 4.5 && < 4.7
                   , parsec == 3.1.*
                   , dbus == 0.10.*
                   , containers >= 0.4 && < 0.6
                   , template-haskell
    Extensions: TemplateHaskell, QuasiQuotes

test-suite tests
  type:                 exitcode-stdio-1.0
  hs-source-dirs:       tests
  main-is:              Tests.hs
  build-depends:        base >= 4.5 && < 4.7
                      , dbus-qq
                      , QuickCheck == 2.5.*
                      , dbus == 0.10.*
                      , containers >= 0.4 && < 0.6