packages feed

scope-0.8.0.0: scope.cabal

Name:                scope

Version:             0.8.0.0

Synopsis:            An interactive renderer for plotting time-series data

Description:
    scope is a framework for plotting time-series data, using zoom-cache
    files. This package contains the core Scope library; to use it for
    interactive plotting, you need a rendering backend such as scope-cairo:
    .
    <http://hackage.haskell.org/package/scope-cairo>
    .
    For more information about zoom-cache files, see the zoom-cache package:
    .
    <http://hackage.haskell.org/package/zoom-cache>

License:             BSD3
License-file:        LICENSE
Author:              Conrad Parker
Maintainer:          conrad@metadecks.org
Category:            Development

Cabal-Version:       >= 1.8
Build-type:          Simple

flag splitBase
  description: Use the split-up base package.

Library
  if flag(splitBase)
    build-depends:
      base >= 3 && < 6
  else
    build-depends:
      base < 3

  Build-Depends:
    bytestring                >= 0.9     && < 0.10,
    containers                >= 0.2     && < 0.5,
    iteratee                  >= 0.8.6.0 && < 0.9,
    MonadCatchIO-transformers >  0.2     && < 0.3,
    mtl                       >= 2.0.0.0 && < 3,
    mwc-random,
    time,
    unix,
    zoom-cache                >= 1.2.0.0 && < 1.3.0.0

  Exposed-modules:
    Scope.Layer
    Scope.Numeric.IEEE754
    Scope.Types
    Scope.View

------------------------------------------------------------------------
-- Git repo
--
source-repository head
  type: git
  location: git://github.com/kfish/scope.git