forked from biegunka/terminal-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterminal-size.cabal
57 lines (50 loc) · 1.23 KB
/
terminal-size.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: terminal-size
version: 0.3.2.1
synopsis: Get terminal window height and width
description:
Get terminal window height and width without ncurses dependency.
license: BSD3
license-file: LICENSE
author: Andreas Hammar, Matvey Aksenov
maintainer: [email protected]
category: System
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: https://github.com/biegunka/terminal-size
source-repository this
type: git
location: https://github.com/biegunka/terminal-size
tag: 0.3.2.1
library
default-language:
Haskell2010
build-depends:
base >= 4 && < 5
if impl(ghc >= 7.2 && < 7.6)
build-depends:
ghc-prim
if os(windows)
build-depends:
process
build-tools:
hsc2hs
hs-source-dirs:
src
exposed-modules:
System.Console.Terminal.Size
other-modules:
System.Console.Terminal.Common
if os(Windows)
other-modules:
System.Console.Terminal.Windows
else
other-modules:
System.Console.Terminal.Posix
ghc-options:
-Wall
-fno-warn-unused-do-bind