packages feed

dyna-brick-0.1.0.0: dyna-brick.cabal

cabal-version: 1.12

name:           dyna-brick
version:        0.1.0.0
synopsis:       FRP for brick Terminal user interface library
description:    Defines FRP for brick Terminal user interface library (see dir examples at the repo's source)
homepage:       https://github.com/anton-k/dyna-brick#readme
bug-reports:    https://github.com/anton-k/dyna-brick/issues
author:         Anton Kholomiov
maintainer:     anton.kholomiov@gmail.com
category:       TUI, FRP
copyright:      2022 Anton Kholomiov
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md

source-repository head
  type: git
  location: https://github.com/dyna-frp/dyna-frp/dyna-brick

library
  exposed-modules:
      Dyna.Brick
      Dyna.Brick.Frp
      Dyna.Brick.Run
      Dyna.Brick.Types
  other-modules:
      Paths_dyna_brick
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , Boolean
    , dyna
    , data-default
    , lifted-base
    , mtl
    , monad-control
    , unagi-chan
    , transformers-base
    , brick
    , stm
    , text
    , random
    , MonadRandom
    , time
    , temporal-media
    , vector-space
    , vty
  default-language: Haskell2010
  default-extensions:
    GADTs
    RankNTypes
    LambdaCase
    FlexibleContexts
    FlexibleInstances
    ExistentialQuantification
    TypeApplications
    TypeFamilies
    TupleSections
    GeneralizedNewtypeDeriving
    UndecidableInstances
    ImportQualifiedPost
    MultiParamTypeClasses
    RecordWildCards

test-suite dyna-brick-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_dyna_brick
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , dyna-brick
  default-language: Haskell2010