packages feed

profiterole-0.1: profiterole.cabal

cabal-version:      >= 1.18
build-type:         Simple
name:               profiterole
version:            0.1
license:            BSD3
license-file:       LICENSE
category:           Development
author:             Neil Mitchell <ndmitchell@gmail.com>
maintainer:         Neil Mitchell <ndmitchell@gmail.com>
copyright:          Neil Mitchell 2017
synopsis:           Restructure GHC profile reports
description:
    Given a GHC profile output, this tool generates alternative views on the data,
    which are typically more concise and may reveal new insights.
homepage:           https://github.com/ndmitchell/profiterole#readme
bug-reports:        https://github.com/ndmitchell/profiterole/issues
extra-doc-files:
    README.md
    CHANGES.txt
tested-with:        GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3

source-repository head
    type:     git
    location: https://github.com/ndmitchell/profiterole.git

executable profiterole
    default-language:   Haskell2010
    main-is:            Main.hs
    hs-source-dirs:     src
    build-depends:
        base >= 4.6 && < 5,
        containers,
        directory,
        extra,
        filepath,
        ghc-prof,
        hashable,
        scientific,
        text
    other-modules:
        Config
        Report
        Type
        Util