name:                cloben
version:             0.1.0.0
synopsis:            Clone and benchmark Haskell cabal projects
description:
  @cloben@ is a Haskell shell script transforms @cabal bench@/@stack bench@
  results into a CSV file readable by @gipeda@ for visualization.
  Prior to that, it optionally clones a specific commit of a given
  git repository into a temporary folder in which it then performs the benchmarking.
  .
  Example run of some default @fib@ benchmarks:
  .
  @
  $ cloben https:\/\/github.com\/sgraf812\/benchmark-test 9982583
  build\/warnings;1.0
  benchmarks\/fib\/10;487.7
  benchmarks\/fib\/35;81910000.0
  benchmarks\/fib\/37;215200000.0
  @
homepage:            http://github.com/sgraf812/cloben#readme
license:             BSD3
license-file:        LICENSE
author:              Sebastian Graf
maintainer:          sgraf1337@gmail.com
copyright:           2015 Sebastian Graf
category:            Benchmarking
build-type:          Simple
cabal-version:       >=1.10
extra-source-files:  README.md

executable cloben
  hs-source-dirs:      .
  main-is:             cloben.hs
  default-language:    Haskell2010
  build-depends:
    base >= 4.7 && < 5,
    turtle >= 1.2 && < 1.3,
    foldl < 2.0,
    system-filepath >= 0.3.1 && < 0.5,
    text < 1.3,
    temporary >= 1.1 && < 1.3,
    process >= 1.1.0.0 && < 1.5

source-repository head
  type: git
  location: https://github.com/sgraf812/cloben.git