File: yi-language.cabal

package info (click to toggle)
haskell-yi-language 0.19.2-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 112 kB
  • sloc: haskell: 722; makefile: 3
file content (81 lines) | stat: -rw-r--r-- 1,872 bytes parent folder | download | duplicates (2)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
name:           yi-language
version:        0.19.2
synopsis:       Collection of language-related Yi libraries.
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

extra-source-files:
    src/Yi/Lexer/common.hsinc

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

library
  hs-source-dirs:
      src
  ghc-options: -Wall -ferror-spans
  include-dirs:
      src/Yi/Lexer
  build-depends:
      base >= 4.8 && < 5
    , array
    , binary
    , data-default
    , template-haskell >= 2.4
    , containers
    , hashable >=1.1.2.5
    , pointedlist >= 0.5
    , regex-base >=0.93 && <0.95
    , regex-tdfa >= 1.1 && <1.4
    , transformers-base
    , unordered-containers >= 0.1.3 && < 0.3
    , microlens-platform
    , oo-prototypes
  build-tools:
      alex >= 3.0.3 && < 3.2.0 || >= 3.2.1
  exposed-modules:
      Yi.Buffer.Basic
      Yi.Lexer.Alex
      Yi.Lexer.Compilation
      Yi.Regex
      Yi.Region
      Yi.Style
      Yi.Style.Library
      Yi.Syntax
      Yi.Utils
  other-modules:
      Paths_yi_language
  default-language: Haskell2010

test-suite tasty
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  hs-source-dirs:
      test
  ghc-options: -Wall -ferror-spans
  build-depends:
      base >= 4.8 && < 5
    , array
    , binary
    , data-default
    , template-haskell >= 2.4
    , containers
    , hashable >=1.1.2.5
    , pointedlist >= 0.5
    , regex-base >=0.93 && <0.95
    , regex-tdfa >= 1.1 && <1.4
    , transformers-base
    , unordered-containers >= 0.1.3 && < 0.3
    , microlens-platform
    , hspec
    , tasty
    , tasty-hspec
    , tasty-quickcheck
    , yi-language
  default-language: Haskell2010