packages feed

pipes-courier-0.1.0.0: pipes-courier.cabal

name:                pipes-courier
version:             0.1.0.0
synopsis:            Pipes utilities for interfacing with the courier message-passing framework.
homepage:            http://github.com/kvanberendonck/pipes-courier
license:             BSD3
license-file:        LICENSE
author:              Kyle Van Berendonck
maintainer:          kvanberendonck@gmail.com
copyright:           2014 Kyle Van Berendonck
category:            Pipes
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10
description:
    Pipes utilities for interfacing with the @courier@ message-passing framework.
    This package implements shortcut fusion for both pushing and pulling streams.

source-repository head
    type: git
    location: git://github.com/kvanberendonck/pipes-courier.git

library
    default-language: Haskell2010
    hs-source-dirs: src

    exposed-modules:
        Pipes.Courier

    build-depends:
        base    >= 4        && < 4.8,
        courier >= 0.1.0.8  && < 0.1.1,
        pipes   >= 4.0      && < 4.2

    default-extensions:
        Rank2Types

    other-extensions:
        Trustworthy

    ghc-options: -O2 -Wall