-
Notifications
You must be signed in to change notification settings - Fork 1
/
brick-skylighting.cabal
57 lines (51 loc) · 1.77 KB
/
brick-skylighting.cabal
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
name: brick-skylighting
version: 1.0
synopsis: Show syntax-highlighted text in your Brick UI
description: This package provides a module to use Skylighting to perform
syntax highlighting and display the results in Brick-based
interfaces.
license: BSD3
license-file: LICENSE
author: Jonathan Daugherty
maintainer: cygnus@foobox.com
copyright: Jonathan Daugherty 2018
category: Graphics
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: 1.18
Homepage: https://github.com/jtdaugherty/brick-skylighting/
Bug-reports: https://github.com/jtdaugherty/brick-skylighting/issues
extra-doc-files:
README.md
Source-Repository head
type: git
location: git://github.com/jtdaugherty/brick-skylighting.git
Flag demos
Description: Build demonstration programs
Default: False
library
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
exposed-modules:
Brick.Widgets.Skylighting
build-depends: base <= 5,
brick >= 1.0,
vty >= 5.23.1,
skylighting-core >= 0.7,
text,
containers
executable brick-skylighting-demo
if !flag(demos)
Buildable: False
main-is: Demo.hs
ghc-options: -threaded -Wall
hs-source-dirs: programs
default-language: Haskell2010
build-depends: base <= 5,
brick,
brick-skylighting,
vty,
skylighting-core >= 0.7,
text,
mtl