packages feed

self-extract-0.1.0.0: self-extract.cabal

name:                self-extract
version:             0.1.0.0
license:             BSD3
license-file:        LICENSE.md
author:              Brandon Chinn <brandon@leapyear.io>
maintainer:          Brandon Chinn <brandon@leapyear.io>
category:            Distribution
synopsis:            A Haskell library to make self-extracting executables
description:         A Haskell library to make self-extracting executables.
build-type:          Simple
cabal-version:       1.18
extra-doc-files:     CHANGELOG.md, README.md

source-repository head
  type: git
  location: https://github.com/brandon-leapyear/self-extract.git

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  exposed-modules:     Codec.SelfExtract
                       Codec.SelfExtract.Distribution
                       Codec.SelfExtract.Tar
  build-depends:       base >= 4.7 && < 5
                     , Cabal >= 2.0 && < 3
                     , binary >= 0.8.5 && < 0.9
                     , bytestring >= 0.10.8 && < 0.11
                     , extra >= 1.6 && < 1.7
                     , file-embed >= 0.0.10 && < 0.1
                     , path >= 0.6 && < 0.7
                     , path-io >= 1.3 && < 1.4
                     , process >= 1.6 && < 1.7
                     , unix-compat >= 0.5 && < 0.6
  ghc-options:
    -Wall -Wincomplete-uni-patterns -Wincomplete-record-updates -Wcompat
    -Wredundant-constraints -Wnoncanonical-monad-instances