packages feed

conduit-resumablesink-0.1: conduit-resumablesink.cabal

Name:          conduit-resumablesink
Version:       0.1
Synopsis:      Allows conduit to resume sinks to feed multiple sources into it.
Description:
    @conduit-resumablesink@ is a solution to the problem where you have a @conduit@
    sink and you want to feed multiple sources into it as each source is exhausted.
    This is essentially the opposite of the ResumableSource functionality supplied
    with conduit.
License:       BSD3
License-file:  LICENSE
Author:        Andrew Miller
Maintainer:    andrew@amxl.com
Category:      Data, Conduit
Build-type:    Simple
Cabal-version: >=1.8
Homepage:      http://github.com/A1kmm/conduit-resumablesink

Library
  Hs-Source-Dirs:    hssrc
  Exposed-modules: Data.Conduit.ResumableSink
  Build-depends: base >= 4 && < 5,
                 conduit >= 0.5 && <0.6,
                 void >= 0.5.5 && < 0.6
  ghc-options:     -Wall

test-suite test
    hs-source-dirs: test
    main-is: main.hs
    type: exitcode-stdio-1.0
    build-depends:   conduit,
                     conduit-resumablesink,
                     base,
                     hspec >= 1.3,
                     bytestring,
                     void,
                     transformers
    ghc-options:     -Wall

source-repository head
  type:     git
  location: git://github.com/A1kmm/conduit-resumablesink.git