hlint/hlint-3.4.1.cabal

187 lines
4.5 KiB
Plaintext

cabal-version: 1.18
build-type: Simple
name: hlint
version: 3.4.1
x-revision: 1
license: BSD3
license-file: LICENSE
category: Development
author: Neil Mitchell <ndmitchell@gmail.com>
maintainer: Neil Mitchell <ndmitchell@gmail.com>
copyright: Neil Mitchell 2006-2022
synopsis: Source code suggestions
description:
HLint gives suggestions on how to improve your source code.
homepage: https://github.com/ndmitchell/hlint#readme
bug-reports: https://github.com/ndmitchell/hlint/issues
data-dir: data
data-files:
hlint.yaml
default.yaml
Test.hs
report_template.html
hs-lint.el
hlint.1
hlint.ghci
HLint_QuickCheck.hs
HLint_TypeCheck.hs
extra-source-files:
.hlint.yaml
data/*.hs
data/*.yaml
tests/*.test
-- These are needed because of haskell/cabal#7862
data/default.yaml
data/hlint.yaml
data/report_template.html
extra-doc-files:
README.md
CHANGES.txt
tested-with: GHC==9.0, GHC==8.10, GHC==8.8
source-repository head
type: git
location: https://github.com/ndmitchell/hlint.git
flag threaded
default: True
manual: True
description: Build with support for multithreaded execution
flag gpl
default: True
manual: True
description: Use GPL libraries, specifically hscolour
flag ghc-lib
default: False
manual: True
description: Force dependency on ghc-lib-parser even if GHC API in the ghc package is supported
flag hsyaml
default: False
manual: True
description: Use HsYAML instead of yaml
library
default-language: Haskell2010
build-depends:
base == 4.*, process, filepath, directory, containers,
unordered-containers, vector, text, bytestring,
transformers,
file-embed,
utf8-string,
data-default >= 0.3,
cpphs >= 1.20.1,
cmdargs >= 0.10,
uniplate >= 1.5,
ansi-terminal >= 0.8.1,
extra >= 1.7.3,
refact >= 0.3,
aeson >= 1.3,
deriving-aeson >= 0.2,
filepattern >= 0.1.1
if !flag(ghc-lib) && impl(ghc >= 9.2.2) && impl(ghc < 9.3.0)
build-depends:
ghc == 9.2.*,
ghc-boot-th,
ghc-boot
else
build-depends:
ghc-lib-parser == 9.2.*
build-depends:
ghc-lib-parser-ex >= 9.2.0.3 && < 9.2.2
if flag(gpl)
build-depends: hscolour >= 1.21
else
cpp-options: -DGPL_SCARES_ME
if flag(hsyaml)
build-depends:
HsYAML >= 0.2,
HsYAML-aeson >= 0.2
cpp-options: -DHS_YAML
else
build-depends: yaml >= 0.5.0
hs-source-dirs: src
exposed-modules:
Language.Haskell.HLint
other-modules:
Paths_hlint
Apply
CmdLine
Extension
Fixity
HLint
HsColour
Idea
Report
Util
Parallel
Refact
Timing
CC
EmbedData
Summary
Config.Compute
Config.Haskell
Config.Read
Config.Type
Config.Yaml
GHC.All
GHC.Util
GHC.Util.ApiAnnotation
GHC.Util.View
GHC.Util.Brackets
GHC.Util.DynFlags
GHC.Util.FreeVars
GHC.Util.HsDecl
GHC.Util.HsExpr
GHC.Util.SrcLoc
GHC.Util.Scope
GHC.Util.Unify
Hint.All
Hint.Bracket
Hint.Comment
Hint.Duplicate
Hint.Export
Hint.Extensions
Hint.Fixities
Hint.Import
Hint.Lambda
Hint.List
Hint.ListRec
Hint.Match
Hint.Monad
Hint.Naming
Hint.NewType
Hint.Pattern
Hint.Pragma
Hint.Restrict
Hint.Smell
Hint.Type
Hint.Unsafe
Hint.NumLiteral
Test.All
Test.Annotations
Test.InputOutput
Test.Util
ghc-options: -Wunused-binds -Wunused-imports -Worphans
executable hlint
default-language: Haskell2010
build-depends: base, hlint
main-is: src/Main.hs
-- See https://github.com/ndmitchell/hlint/pull/1169 for benchmarks
-- that indicate -A32 is a good idea
ghc-options: -rtsopts -with-rtsopts=-A32m
if flag(threaded)
ghc-options: -threaded