packages feed

stack-fix-0.1.0.0: stack-fix.cabal

cabal-version:       2.4
-- Initial package description 'stack-fix.cabal' generated by 'cabal init'.
--   For further documentation, see http://haskell.org/cabal/users-guide/

name:                stack-fix
version:             0.1.0.0
synopsis:            Console program used to fix Stack build errors automatically
description:         Stack fix works by running `stack build` and by parsing and interpreting the build errors/suggestions it applies any build fixes required to the stack.yaml, .cabal, etc. These fixes usually involve specifying build dependencies versions or adding new build dependencies.
homepage:            https://github.com/razvan-panda/haskell-stack-fix
-- bug-reports:
license:             AGPL-3.0-only
license-file:        LICENSE
author:              Răzvan Flavius Panda
maintainer:          razvan.panda@gmail.com
-- copyright:
category:            Development
extra-source-files:  CHANGELOG.md, README.md

source-repository head
  type:     git
  location: https://github.com/razvan-panda/haskell-stack-fix.git

executable stack-fix
  main-is:             Main.hs
  other-modules:       Paths_stack_fix
  autogen-modules:     Paths_stack_fix
  -- other-extensions:
  build-depends:       base   ^>= 4.12.0.0,
                       turtle  == 1.5.14,
                       text    == 1.2.3.1,
                       options == 1.2.1.1
  hs-source-dirs:      src
  default-language:    Haskell2010