File: yi-misc-modes.cabal

package info (click to toggle)
haskell-yi-misc-modes 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: haskell: 449; makefile: 5
file content (68 lines) | stat: -rw-r--r-- 1,555 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name:           yi-misc-modes
version:        0.19.1
synopsis:       Yi editor miscellaneous modes
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:
      array
    , base >= 4.8 && < 5
    , binary >= 0.7
    , data-default
    , filepath
    , microlens-platform
    , text
    , yi-core >= 0.19
    , yi-language >= 0.19
    , yi-rope >= 0.10
  build-tools:
      alex >= 3.0.3 && < 3.2.0 || >= 3.2.1
  exposed-modules:
      Yi.Config.Default.MiscModes
      Yi.Modes
      Yi.Mode.Buffers
      Yi.Mode.Abella
      Yi.Mode.Latex
      Yi.Lexer.Abella
      Yi.Lexer.C
      Yi.Lexer.Cabal
      Yi.Lexer.Clojure
      Yi.Lexer.Cplusplus
      Yi.Lexer.GNUMake
      Yi.Lexer.GitCommit
      Yi.Lexer.JSON
      Yi.Lexer.Java
      Yi.Lexer.Latex
      Yi.Lexer.OCaml
      Yi.Lexer.ObjectiveC
      Yi.Lexer.Ott
      Yi.Lexer.Perl
      Yi.Lexer.Python
      Yi.Lexer.R
      Yi.Lexer.Ruby
      Yi.Lexer.SVNCommit
      Yi.Lexer.Srmc
      Yi.Lexer.Whitespace
      Yi.Syntax.Latex
  other-modules:
      Yi.Lexer.BasicTemplate
      Paths_yi_misc_modes
  default-language: Haskell2010