-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbrick-panes.cabal
100 lines (89 loc) · 2.96 KB
/
brick-panes.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
cabal-version: 3.0
name: brick-panes
version: 1.0.2.0
synopsis:
Panes library for Brick providing composition and isolation for TUI apps.
description:
The Panes library is an overlay for Brick that allows individual TUI
screen areas to be independently developed and then easily composed
into the overall application.
homepage: https://github.com/kquick/brick-panes
license: ISC
license-file: LICENSE
author: Kevin Quick
maintainer: [email protected]
copyright: (c) Kevin Quick, 2022
category: Graphics
build-type: Simple
tested-with: GHC == 8.8.4
GHC == 8.10.7
GHC == 9.2.7
GHC == 9.4.4
GHC == 9.6
GHC == 9.8
extra-doc-files: CHANGELOG.md
, README.org
source-repository head
type: git
location: https://github.com/kquick/brick-panes
flag examples
description: Build example programs
default: True
manual: False
common settings
ghc-options: -Wall
-Wcompat
-Wincomplete-uni-patterns
-Wsimplifiable-class-constraints
-Wpartial-fields
-fhide-source-paths
library
import: settings
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Brick.Panes
build-depends: base >= 4.13 && < 4.21
, brick >= 1.0 && < 2.4
, containers
, microlens >= 0.4.11.2 && < 0.5
, vty >= 5.35 && < 6.2
executable mywork-example
import: settings
default-language: Haskell2010
hs-source-dirs: samples/mywork
main-is: Main.hs
ghc-options: -threaded
other-modules: Defs
InitialData
Panes.FileMgr
Panes.Location
Panes.Operations
Panes.Projects
Panes.Summary
Paths_brick_panes
autogen-modules: Paths_brick_panes
build-depends: base >= 4.13 && < 4.21
, brick
, brick-panes
, aeson >= 2.0 && < 2.3
, bytestring
, containers
, directory
, microlens >= 0.4.11.2 && < 0.5
, text
, text-zipper >= 0.12 && < 0.14
, time
, vector >= 0.12 && < 0.14
, vty >= 5.35 && < 6.2
if !flag(examples)
buildable: False
test-suite brick-panes-test
import: settings
default-language: Haskell2010
-- other-modules:
-- other-extensions:
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base
, brick-panes