name: lzma version: 0.0.0.1 x-revision: 1 synopsis: LZMA/XZ compression and decompression homepage: https://github.com/hvr/lzma bug-reports: https://github.com/hvr/lzma/issues license: BSD3 license-file: LICENSE author: Herbert Valerio Riedel maintainer: hvr@gnu.org copyright: (c) 2015, Herbert Valerio Riedel stability: experimental category: Codec, Compression build-type: Simple cabal-version: >=1.10 tested-with: GHC ==7.4.2, GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.1 description: This package provides a pure interface for compressing and decompressing streams of data represented as lazy @ByteString@s. A monadic incremental interface is provided as well. This package relies on the @liblzma@ C library. . The following packages are based on this package and provide API support for popular streaming frameworks: . * (for ) . source-repository head type: git location: https://github.com/hvr/lzma.git library default-language: Haskell2010 other-extensions: RecordWildCards, DeriveDataTypeable hs-source-dirs: src exposed-modules: Codec.Compression.Lzma other-modules: LibLzma build-depends: base >=4.5 && <4.10 , bytestring >=0.9.2 && <0.11 if os(windows) build-depends: lzma-clib else includes: lzma.h extra-libraries: lzma c-sources: cbits/lzma_wrapper.c ghc-options: -Wall test-suite lzma-tests default-language: Haskell2010 other-extensions: OverloadedStrings hs-source-dirs: src-tests type: exitcode-stdio-1.0 main-is: lzma-tests.hs -- dependencies with version bounds inherited from the library stanza build-depends: lzma , base , bytestring -- additional dependencies that require version bounds build-depends: HUnit >= 1.2 && <1.4 , QuickCheck >= 2.8 && <2.9 , tasty == 0.10.* , tasty-hunit == 0.9.* , tasty-quickcheck >= 0.8.3.2 && < 0.9 ghc-options: -Wall -threaded