File: yi-frontend-vty.cabal

package info (click to toggle)
haskell-yi-frontend-vty 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 80 kB
  • sloc: haskell: 485; makefile: 5
file content (50 lines) | stat: -rw-r--r-- 1,164 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name:           yi-frontend-vty
version:        0.19.1
synopsis:       Vty frontend for Yi editor
category:       Yi
homepage:       https://github.com/yi-editor/yi#readme
bug-reports:    https://github.com/yi-editor/yi/issues
maintainer:     Yi developers <yi-devel@googlegroups.com>
license:        GPL-2
build-type:     Simple
cabal-version:  >= 1.10

source-repository head
  type: git
  location: https://github.com/yi-editor/yi

flag old-vty
  description: Build against a pre-6.0 version of the vty package.
  default: False
  manual: False

library
  hs-source-dirs:
      src
  ghc-options: -Wall -ferror-spans
  build-depends:
      base >= 4.8 && < 5
    , containers
    , data-default
    , dlist
    , microlens-platform
    , pointedlist
    , stm >= 2.2
    , text
    , yi-core >= 0.19
    , yi-language >= 0.19
    , yi-rope >= 0.10
  if flag(old-vty)
    build-depends:
        vty >= 5.4 && < 6
  else
    build-depends:
        vty >= 6
      , vty-crossplatform
  exposed-modules:
      Yi.Config.Default.Vty
      Yi.Frontend.Vty
      Yi.Frontend.Vty.Conversions
  other-modules:
      Paths_yi_frontend_vty
  default-language: Haskell2010