packages feed

vty-windows-0.1.0.2: vty-windows.cabal

cabal-version:      3.0
name:               vty-windows
version:            0.1.0.2
license:            BSD-3-Clause
license-file:       LICENSE
author:             Chris hackett
maintainer:         chris.h.hackett@gmail.com
category:           Graphics
synopsis:           Windows backend for Vty
description:        This package provides Windows terminal support for Vty.
build-type:         Simple
extra-doc-files:    CHANGELOG.md
extra-source-files: cbits/win_pseudo_console.c

common warnings
    ghc-options: -Wall

library
    import:           warnings
    c-sources:        cbits/win_commands.c
    exposed-modules:  Data.Terminfo.Eval
                      Data.Terminfo.Parse
                      Graphics.Vty.Platform.Windows
                      Graphics.Vty.Platform.Windows.Input
                      Graphics.Vty.Platform.Windows.Input.Loop
                      Graphics.Vty.Platform.Windows.Input.Terminfo
                      Graphics.Vty.Platform.Windows.Input.Terminfo.ANSIVT
                      Graphics.Vty.Platform.Windows.Input.Focus
                      Graphics.Vty.Platform.Windows.Input.Paste
                      Graphics.Vty.Platform.Windows.Input.Mouse
                      Graphics.Vty.Platform.Windows.Input.Classify
                      Graphics.Vty.Platform.Windows.Input.Classify.Parse
                      Graphics.Vty.Platform.Windows.Input.Classify.Types
                      Graphics.Vty.Platform.Windows.Output
                      Graphics.Vty.Platform.Windows.Output.TerminfoBased
                      Graphics.Vty.Platform.Windows.Output.XTermColor
                      Graphics.Vty.Platform.Windows.Output.Color
                      Graphics.Vty.Platform.Windows.Settings
                      Graphics.Vty.Platform.Windows.WindowsCapabilities
                      Graphics.Vty.Platform.Windows.WindowsConsoleInput
                      Graphics.Vty.Platform.Windows.WindowsInterfaces
    build-depends:    base                >= 4.9.0.0 && < 5.0,
                      Win32               >= 2.8.5.0 && < 3.0,
                      bytestring          >= 0.11.4 && < 1.0,
                      deepseq             >= 1.4.2 && < 2.0,
                      filepath            >= 1.4.2 && < 2.0,
                      blaze-builder       >= 0.4.2 && < 1.0,
                      containers          >= 0.5.7 && < 1.0,
                      directory           >= 1.3.7 && < 2.0,
                      microlens           >= 0.4.13 && < 1.0,
                      microlens-mtl       >= 0.2.0 && < 1.0,
                      mtl                 >= 2.2.2 && < 3.0,
                      transformers        >= 0.5.6 && < 1.0,
                      microlens-th        >= 0.4.3 && < 1.0,
                      parsec              >= 3.1.16 && < 4.0,
                      stm                 >= 2.5.1 && < 3.0,
                      utf8-string         >= 1.0.2 && < 2.0,
                      vector              >= 0.13.0 && < 1.0,
                      vty                 >= 6.0 && < 7.0,
    hs-source-dirs:   src
    default-language: Haskell2010