packages feed

cabal-clean-0.2.20230609: cabal-clean.cabal

cabal-version:       >=1.10

name:                cabal-clean
version:             0.2.20230609
synopsis:            Remove outdated cabal build artefacts from `dist-newstyle`.

description:         Simple command line tool to remove cabal build artefacts
                     from `dist-newstyle/build` that are superseded by newer
                     versions of the built package or the Haskell compiler.

homepage:            https://github.com/andreasabel/cabal-clean
bug-reports:         https://github.com/andreasabel/cabal-clean/issues
license:             BSD3
license-file:        LICENSE

author:              Andreas Abel
maintainer:          Andreas Abel <andreas.abel@cse.gu.se>
copyright:           Andreas Abel, 2021, 2022
category:            Development

build-type:          Simple

extra-source-files:  CHANGELOG.md
                     README.md

tested-with:
  GHC == 9.6.2
  GHC == 9.4.5
  GHC == 9.2.8
  GHC == 9.0.2
  GHC == 8.10.7
  GHC == 8.8.4
  GHC == 8.6.5
  GHC == 8.4.4
  GHC == 8.2.2
  GHC == 8.0.2

source-repository head
  type:     git
  location: https://github.com/andreasabel/cabal-clean.git

executable cabal-clean
  main-is:             Main.hs

  other-modules:
    DiscoverGHCs
    License
    Options
    Structure
    Types
    Util
    Version
    Paths_cabal_clean

  build-depends:
    base >= 4.9 && < 5
    -- fromDescList requires containers >= 0.5.8
    , containers >= 0.5.8
    , directory
    -- , directory >= 1.2.6.2 && < 1.4
    , filemanip >= 0.3.6.3
    , filepath
    -- , filepath == 1.4.*
    , mtl
    -- missing Semigroup instances with optparse-applicative-0.12
    , optparse-applicative >= 0.13
    -- pretty-terminal-0.1.0.0 has base >= 4.9
    , pretty-terminal
    , process
    , silently >= 1.2.5.2
    , split
    , string-qq

  hs-source-dirs:      src
  default-language:    Haskell2010

  default-extensions:
    LambdaCase
    RecordWildCards
    TupleSections

  ghc-options:
    -Wall
    -Wcompat