hstar-0.1.0.7: hstar.cabal
cabal-version: 2.0
name: hstar
version: 0.1.0.7
license: BSD3
license-file: LICENSE
copyright: Copyright: (c) 2019-2020 Vanessa McHale
maintainer: vamchale@gmail.com
author: Vanessa McHale
bug-reports: https://github.com/vmchale/archive-backpack/issues
synopsis: Haskell version of tar CLI utility
description:
Haskell implementation of the tar utility, backed by [libarchive](http://libarchive.org/).
category: Codec, Tar, Archive
build-type: Simple
data-files: man/hstar.1
extra-source-files:
CHANGELOG.md
README.md
source-repository head
type: git
location: https://github.com/vmchale/archive-backpack
subdir: hstar
flag with-brotli
description: Enable brotli compression support
flag with-snappy
description: Enable snappy support
default: False
executable hstar
main-is: Main.hs
build-tool-depends: cpphs:cpphs
hs-source-dirs: src
other-modules:
Compression
Compression.Type
Compression.Level
Compression.Lrzip
Tar
Paths_hstar
Version
Version.Foreign
autogen-modules: Paths_hstar
default-language: Haskell2010
ghc-options:
-Wall -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints -Widentities -Wmissing-export-lists
build-depends:
base >=4.11 && <5,
libarchive >=3.0.0.0,
optparse-applicative,
composition-prelude,
bytestring,
lzma-static,
bz2 >=1.0.0.0,
zlib,
zstd,
lz4-hs >=0.1.4.0,
lzlib >=1.0.7.0,
lzo >=0.1.1.0,
process >=1.4.3.0,
dir-traverse >=0.2.2.0
if flag(with-snappy)
build-depends: snappy-lazy
if flag(with-brotli)
build-depends: brotli
if flag(with-brotli)
cpp-options: -DBROTLI
if flag(with-snappy)
cpp-options: -DSNAPPY
if impl(ghc >=8.10)
ghc-options: -Wunused-packages