packages feed

ghc-time-alloc-prof-0.0.0: ghc-time-alloc-prof.cabal

name: ghc-time-alloc-prof
version: 0.0.0
synopsis: Library for parsing GHC time and allocation profiling reports
description: Library for parsing GHC time and allocation profiling reports
homepage: https://github.com/maoe/ghc-time-alloc-prof
license: BSD3
license-file: LICENSE
author: Mitsutoshi Aoe
maintainer: Mitsutoshi Aoe <maoe@foldr.in>
copyright: Copyright (C) 2013 Mitsutoshi Aoe
category: Development
build-type: Simple
cabal-version: >=1.10

flag dump
  description: Build the executable "dump"
  default: False

library
  exposed-modules:
    GHC.RTS.TimeAllocProfile
    GHC.RTS.TimeAllocProfile.Parser
    GHC.RTS.TimeAllocProfile.Types
    GHC.RTS.TimeAllocProfile.CostCentreTree
  build-depends:
      base == 4.*
    , attoparsec
    , containers
    , text
    , time
  hs-source-dirs: src
  ghc-options: -Wall
  default-language: Haskell2010

executable dump
  if flag(dump)
    buildable: True
  else
    buildable: False

  main-is: dump.hs
  hs-source-dirs: bin
  build-depends:
      base
    , attoparsec
    , containers
    , ghc-time-alloc-prof
    , text
  ghc-options: -Wall -rtsopts
  default-language: Haskell2010

source-repository head
  type: git
  location: https://github.com/maoe/ghc-time-alloc-prof.git