packages feed

simple-tar-0.5.1: simple-tar.cabal

name:          simple-tar
version:       0.5.1
license:       BSD3
license-file:  LICENSE
author:        Adam Wick <awick@galois.com>
maintainer:    Adam Wick <awick@galois.com>
bug-reports:   https://github.com/GaloisInc/simple-tar/issues
copyright:     2016 Galois, Inc
category:      Codec
synopsis:      Simple, pure, file-system-free reading of tar files
description:   This library is for reading \"@.tar@\" files found from
	       some other source, and providing a mechanism for accessing
               their files. It specifically supports the USTAR tar format;
               other formats may come in the future by request.
build-type:    Simple
cabal-version: >= 1.8
tested-with:   GHC==7.8.4, GHC==7.10.3, GHC==8.0.1

source-repository head
  type: git
  location: https://github.com/GaloisInc/simple-tar

library
  hs-source-dirs:   src
  build-depends:    base       >= 4.7    && < 5.0,
                    bytestring >= 0.10.4 && < 0.14,
                    cereal     >= 0.5.2  && < 0.7,
                    containers >= 0.5.5  && < 0.9,
                    filepath   >= 1.3    && < 1.7,
                    time       >= 1.4.2  && < 1.7
  exposed-modules:  Codec.Archive.Tar
  ghc-options:      -Wall