packages feed

stack-all-0.6.2: stack-all.cabal

name:                stack-all
version:             0.6.2
synopsis:            CLI tool for building over Stackage major versions
description:
        Build a Haskell project over one or many Stackage major LTS versions.
license:             BSD3
license-file:        LICENSE
author:              Jens Petersen <juhpetersen@gmail.com>
maintainer:          Jens Petersen <juhpetersen@gmail.com>
copyright:           2020-2024  Jens Petersen <juhpetersen@gmail.com>
category:            Distribution
homepage:            https://github.com/juhp/stack-all
bug-reports:         https://github.com/juhp/stack-all/issues
build-type:          Simple
extra-doc-files:     README.md
                     ChangeLog.md
cabal-version:       1.18
tested-with:         GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5,
                     GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.8,
                     GHC == 9.4.8, GHC == 9.6.5, GHC == 9.8.2

source-repository head
  type:                git
  location:            https://github.com/juhp/stack-all.git

flag aeson1
  description:   aeson-1 needs unordered-containers
  default:       False
  manual:        False

executable stack-all
  main-is:             Main.hs
  other-modules:       Paths_stack_all
                       MajorVer
                       Snapshots
  hs-source-dirs:      src
  build-depends:       base < 5
                     , aeson
                     , cached-json-file
                     , config-ini
                     , directory >= 1.2.5
                     , extra >= 1.6.15
                     , filepath
                     , http-query
                     , process
                     , simple-cmd >= 0.1.4
                     , simple-cmd-args >= 0.1.8
                     , text
  if flag(aeson1)
       build-depends: unordered-containers
  default-language:    Haskell2010
  ghc-options:         -Wall
  if impl(ghc >= 8.0)
    ghc-options:       -Wcompat
                       -Widentities
                       -Wincomplete-uni-patterns
                       -Wincomplete-record-updates
                       -Wredundant-constraints
  if impl(ghc >= 8.2)
    ghc-options:       -fhide-source-paths
  if impl(ghc >= 8.4)
    ghc-options:       -Wmissing-export-lists
                       -Wpartial-fields
  if impl(ghc >= 8.10)
    ghc-options:       -Wunused-packages