File: pipes-zlib.cabal

package info (click to toggle)
haskell-pipes-zlib 0.4.4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 84 kB
  • sloc: haskell: 198; makefile: 2
file content (53 lines) | stat: -rw-r--r-- 1,836 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name:               pipes-zlib
version:            0.4.4.2
license:            BSD3
license-file:       LICENSE
Copyright:          Copyright (c) Paolo Capriotti 2012, Renzo Carbonara 2013-2018
author:             Renzo Carbonara, Paolo Capriotti
maintainer:         renĪ»ren.zone
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.10
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
                   , pipes >= 4.0
                   , bytestring >= 0.9.2.1
                   , streaming-commons >= 0.1.15
    ghc-options: -Wall -O2
    default-language:    Haskell2010

test-suite test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Main.hs
  build-depends:       base
                     , pipes-zlib
                     , pipes
                     , bytestring
                     , HUnit
                     , QuickCheck
                     , quickcheck-instances
                     , tasty
                     , tasty-quickcheck
                     , tasty-hunit
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/githubuser/twio