packages feed

pipes-zlib-0.4.2: pipes-zlib.cabal

name:               pipes-zlib
version:            0.4.2
license:            BSD3
license-file:       LICENSE
Copyright:          Copyright (c) Paolo Capriotti 2012,
                                  Renzo Carbonara 2013-2014
author:             Renzo Carbonara, Paolo Capriotti
maintainer:         renzocarbonaraλgmail.com
stability:          Experimental
homepage:           https://github.com/k0001/pipes-zlib
bug-reports:        https://github.com/k0001/pipes-zlib/issues
category:           Pipes, Compression
build-type:         Simple
synopsis:           Zlib and GZip compression and decompression for Pipes streams
description:        Zlib and GZip compression and decompression for Pipes streams
cabal-version:      >=1.8
extra-source-files: README.md PEOPLE changelog.md

source-repository head
    type: git
    location: git://github.com/k0001/pipes-zlib.git

library
    hs-source-dirs:  src
    exposed-modules: Pipes.Zlib
                     Pipes.GZip
    build-depends:   base             (>= 4.5 && < 5.0)
                   , transformers     (>= 0.2 && < 0.5)
                   , pipes            (>= 4.0 && < 4.2)
                   , bytestring       (>= 0.9.2.1)
                   , zlib             (>= 0.5 && < 0.7)
                   , zlib-bindings    (>= 0.1 && < 0.2)
    ghc-options: -Wall -O2