packages feed

hcount-0.0.1: hcount.cabal

cabal-version: 2.4
name:          hcount
version:       0.0.1
synopsis: Haskell name counts.
description: Counting of Haskell names and artifacts usage, based on stan.
             .
             === Usage
             .
             1. Include the following ghc-options in the cabal file of the libraries you want to analyse:
             .
             > -fwrite-ide-info
             > -hiedir=.hie
             .
             2. Install hcount
             .
             > stack install hcount
             .
             3. run hcount
             .
             > cd project
             > hcount

category: project
author: Tony Day
maintainer: tonyday567@gmail.com
copyright: Tony Day (c) AfterTimes
license: BSD-3-Clause
homepage: https://github.com/tonyday567/hcount#readme
bug-reports: https://github.com/tonyday567/hcount/issues
build-type: Simple
source-repository head
  type: git
  location: https://github.com/tonyday567/hcount

executable hcount
  main-is: hcount.hs
  hs-source-dirs: app
  build-depends:
    attoparsec >= 0.13 && < 0.14,
    base >= 4.7 && < 5,
    containers >= 0.6 && < 0.7,
    ghc >= 8.10 && < 8.11,
    lens > 4.19 && < 4.20,
    numhask >= 0.7 && < 0.8,
    optparse-applicative >= 0.15 && < 0.16,
    stan >= 0.1 && < 0.2,
    text >= 1.2 && < 1.3,
  default-language: Haskell2010
  default-extensions:
  ghc-options:
    -fwrite-ide-info
    -hiedir=.hie