reflex-vty/reflex-vty.cabal

66 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-02-26 00:58:54 +03:00
name: reflex-vty
version: 0.1.0.0
2018-11-04 10:37:19 +03:00
synopsis: Reflex FRP host and widgets for vty applications
2018-11-05 10:38:32 +03:00
description:
Host and widget library for Reflex-based FRP applications
.
<<./doc/welcome.gif>>
2018-02-26 00:58:54 +03:00
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: maintainer@obsidian.systems
category: FRP
2018-02-26 00:58:54 +03:00
build-type: Simple
2019-08-04 04:38:35 +03:00
cabal-version: >=1.18
extra-source-files: README.md
ChangeLog.md
2018-11-05 10:38:32 +03:00
extra-doc-files: doc/welcome.gif
2018-11-05 10:43:28 +03:00
, doc/tasks.png
2018-02-26 00:58:54 +03:00
library
exposed-modules: Reflex.Vty
, Reflex.Vty.Host
, Reflex.Vty.Widget
, Reflex.Vty.Widget.Input
, Reflex.Vty.Widget.Input.Text
, Reflex.Vty.Widget.Layout
, Data.Text.Zipper
, Reflex.Class.Switchable
, Reflex.Spider.Orphans
, Control.Monad.NodeId
2018-02-26 00:58:54 +03:00
build-depends:
2019-08-04 04:38:35 +03:00
base <= 4.13,
bimap,
containers,
2018-11-03 07:03:59 +03:00
data-default,
dependent-map,
2018-02-26 00:58:54 +03:00
dependent-sum,
2018-11-06 02:12:55 +03:00
exception-transformers,
2018-02-26 00:58:54 +03:00
mtl,
2018-02-26 01:42:42 +03:00
primitive,
ref-tf,
reflex >= 0.6.1,
2018-02-26 19:41:14 +03:00
stm,
2018-11-03 07:03:59 +03:00
text,
2018-02-26 01:42:42 +03:00
time,
2018-11-03 07:03:59 +03:00
transformers,
2018-02-26 00:58:54 +03:00
vty
hs-source-dirs: src
default-language: Haskell2010
2019-02-18 00:20:46 +03:00
ghc-options: -Wall
executable example
hs-source-dirs: src-bin
main-is: example.hs
2018-10-14 03:28:02 +03:00
ghc-options: -threaded
build-depends:
base,
containers,
reflex,
reflex-vty,
2018-11-03 07:14:07 +03:00
text,
time,
2018-09-01 19:02:15 +03:00
transformers,
vty
default-language: Haskell2010