mirror of
https://github.com/ilyakooo0/reflex-vty.git
synced 2024-11-30 01:04:16 +03:00
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
name: reflex-vty
|
|
version: 0.1.0.0
|
|
synopsis: Reflex FRP host and widgets for vty applications
|
|
description: Host and widget library for Reflex-based FRP applications
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Obsidian Systems LLC
|
|
maintainer: maintainer@obsidian.systems
|
|
category: FRP
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
|
|
library
|
|
exposed-modules: Reflex.Vty
|
|
, Reflex.Vty.Host
|
|
, Reflex.Vty.Widget
|
|
, Reflex.Vty.Widget.Input
|
|
, Reflex.Vty.Widget.Input.Text
|
|
, Data.Text.Zipper
|
|
, Control.Monad.Writer.Adjustable
|
|
, Reflex.Class.Switchable
|
|
, Reflex.NotReady.Class.Orphans
|
|
, Reflex.Spider.Orphans
|
|
build-depends:
|
|
base,
|
|
containers,
|
|
data-default,
|
|
dependent-map,
|
|
dependent-sum,
|
|
mtl,
|
|
primitive,
|
|
ref-tf,
|
|
reflex,
|
|
stm,
|
|
text,
|
|
time,
|
|
transformers,
|
|
vty
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
|
|
executable example
|
|
hs-source-dirs: src-bin
|
|
main-is: example.hs
|
|
ghc-options: -threaded
|
|
build-depends:
|
|
base,
|
|
containers,
|
|
reflex,
|
|
reflex-vty,
|
|
text,
|
|
time,
|
|
transformers,
|
|
vty
|
|
default-language: Haskell2010
|