packages feed

liveplot-0.1.0.0: liveplot.cabal

name:                liveplot
version:             0.1.0.0
synopsis:            Liveplotting

description:         Live plotting with OpenGL. This Haskell library allows feeding live data via Pipes to OpenGL plots.

license:             BSD3
license-file:        LICENSE
author:              Richard Marko
maintainer:          srk@48.io
copyright:           Copyright (C) 2017 Richard Marko
category:            Graphics
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Graphics.Liveplot
                       Graphics.Liveplot.Demo
                       Graphics.Liveplot.Line
                       Graphics.Liveplot.Shaders
                       Graphics.Liveplot.Types
                       Graphics.Liveplot.Utils
                       Graphics.Liveplot.Window
  build-depends:       base >= 4.6 && < 5,
                       andromeda,
                       bytestring,
                       containers,
                       directory,
                       filepath,
                       GLFW-b,
                       GLUtil,
                       lens,
                       linear,
                       mvc,
                       OpenGL,
                       pipes,
                       pipes-misc,
                       pipes-extras,
                       stm,
                       time,
                       transformers,
                       Vec,
                       vector,
                       vinyl,
                       vinyl-gl

  default-language:    Haskell2010
  ghc-options:         -Wall

executable liveplot
  main-is:             App.hs
  hs-source-dirs:      app
  build-depends:       base >= 4.6 && < 5,
                       mvc,
                       pipes,
                       liveplot
  default-language:    Haskell2010

executable liveplot-demo
  main-is:             Demo.hs
  hs-source-dirs:      app
  build-depends:       base >= 4.6 && < 5,
                       liveplot
  default-language:    Haskell2010