packages feed

hsinstall-2.6: package.yaml

name: hsinstall
version: '2.6'
synopsis: Install Haskell software
description: This is a tool for deploying software projects into directory structures suitable for installation on a system. It builds upon the `stack install` command and adds more features. It's also a tool for easier AppImage creation.
license: ISC
author: Dino Morelli
maintainer: Dino Morelli <dino@ui3.info>
copyright: 2016-2020 Dino Morelli
category: Utility
extra-source-files:
- changelog.md
- doc/hcar/hsinstall.tex
- .gitignore
- hsinstall/share/applications/hsinstall.desktop
- hsinstall/share/hsinstall/resources/unix-terminal.svg
- hsinstall/share/icons/hicolor/scalable/apps/hsinstall.svg
- package.yaml
- README.md
- stack.yaml
- stack.yaml.lock

github: dino-/hsinstall

ghc-options:
- -fwarn-tabs
- -Wall
- -Wcompat
- -Wincomplete-record-updates
- -Wincomplete-uni-patterns
- -Wredundant-constraints

dependencies:
- base >= 4.8 && < 5.0
- directory
- filepath

library:
  source-dirs: src/lib

executables:
  hsinstall:
    source-dirs: src/app
    main: hsinstall.hs
    dependencies:
    - ansi-wl-pprint
    - Cabal
    - heredoc
    - hsinstall
    - optparse-applicative
    - process
    - safe-exceptions
    - transformers