packages feed

dynamic-graph-0.1.0.6: dynamic-graph.cabal

name:                dynamic-graph
version:             0.1.0.6
synopsis:            Draw and update graphs in real time with OpenGL
description:         
    Draw and update graphs in real time with OpenGL. Suitable for displaying large amounts of frequently changing data. Line graphs and waterfall plots are supported, as well as axis drawing.
    .
    See <https://github.com/adamwalker/dynamic-graph> for examples of the graphs it can produce.
    .
    To get started, see "Graphics.DynamicGraph.Window" 
license:             BSD3
license-file:        LICENSE
author:              Adam Walker
maintainer:          adamwalker10@gmail.com
copyright:           2014 Adam Walker
category:            Graphics
homepage:            https://github.com/adamwalker/dynamic-graph 
bug-reports:         https://github.com/adamwalker/dynamic-graph/issues
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10
data-files:          shaders/line.vert, shaders/line.frag, shaders/waterfall.vert, shaders/waterfall.frag, shaders/fill_line.vert, shaders/fill_line.frag, shaders/cairo.vert, shaders/cairo.frag

source-repository head
    type: git
    location: https://github.com/adamwalker/dynamic-graph

library
  exposed-modules:     Graphics.DynamicGraph.Line, Graphics.DynamicGraph.Waterfall, Graphics.DynamicGraph.Util, Graphics.DynamicGraph.FillLine, Graphics.DynamicGraph.Axis, Graphics.DynamicGraph.RenderCairo, Graphics.DynamicGraph.ColorMaps, Graphics.DynamicGraph.Window
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <4.8, GLFW-b >=1.4 && <1.5, OpenGL >=2.9 && <2.13, GLUtil >=0.7 && <0.9, transformers >=0.3 && <0.5, either >=4.1 && <4.4, pipes >=4.1 && <4.2, pango >=0.13 && <0.14, cairo >=0.13 && <0.14, colour >=2.3 && <2.4, bytestring >=0.10 && <0.11, deepseq >=1.3 && <1.5
  -- hs-source-dirs:      
  default-language:    Haskell2010
  other-modules:       Paths_dynamic_graph