ztar-0.0.2: ztar.cabal
name: ztar
version: 0.0.2
license: BSD3
license-file: LICENSE.md
author: Brandon Chinn <brandonchinn178@gmail.com>
maintainer: Brandon Chinn <brandonchinn178@gmail.com>
category: Codec
synopsis: Creating and extracting compressed tar archives
description: Creating and extracting compressed tar archives.
build-type: Simple
cabal-version: 1.18
extra-doc-files: CHANGELOG.md, README.md
source-repository head
type: git
location: https://github.com/brandonchinn178/ztar.git
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Codec.Archive.Tar.GZip
build-depends: base >= 4.7 && < 5
, bytestring >= 0.10.8 && < 0.11
, tar >= 0.5 && < 0.6
, zlib >= 0.6 && < 0.7
ghc-options:
-Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat
-Wredundant-constraints -Wnoncanonical-monad-instances
test-suite example
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Example.hs
build-depends: base
, path
, path-io
, ztar