-
Notifications
You must be signed in to change notification settings - Fork 1
/
ascii-progress.cabal
140 lines (124 loc) · 4.07 KB
/
ascii-progress.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
name: ascii-progress
version: 0.3.3.0
synopsis: A simple progress bar for the console.
description:
A simple Haskell progress bar for the console. Heavily borrows from TJ
Holowaychuk's Node.JS project
<https://github.com/tj/node-progress progress>
.
<https://github.com/yamadapc/haskell-ascii-progress github>
homepage: https://github.com/yamadapc/haskell-ascii-progress
license: MIT
license-file: LICENSE
author: Pedro Tacla Yamada
maintainer: tacla.yamada@gmail.com
copyright: (c) 2015 Pedro Tacla Yamada
category: System
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/yamadapc/haskell-ascii-progress
flag examples
description: Build the examples
default: False
library
exposed-modules: System.Console.AsciiProgress
, System.Console.AsciiProgress.Internal
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, time >= 1.4.0.1
hs-source-dirs: lib
default-language: Haskell2010
executable example
main-is: Example.hs
default-language: Haskell2010
if !flag(examples)
buildable: False
else
buildable: True
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, time >= 1.4.0.1
hs-source-dirs: lib
, bin
executable npm-example
main-is: NpmExample.hs
default-language: Haskell2010
if !flag(examples)
buildable: False
else
buildable: True
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, time >= 1.4.0.1
hs-source-dirs: lib
, bin
executable download-example
main-is: DownloadExample.hs
default-language: Haskell2010
if !flag(examples)
buildable: False
else
buildable: True
build-depends: HTTP
, concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, bytestring
, data-default >= 0.5.3
, time >= 1.4.0.1
, conduit >= 1.2
, http-conduit >= 2.1
, http-types >= 0.8
, transformers >= 0.3
hs-source-dirs: lib
, bin
executable multi-example
main-is: MultiExample.hs
default-language: Haskell2010
if !flag(examples)
buildable: False
else
buildable: True
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, time >= 1.4.0.1
hs-source-dirs: lib
, bin
executable crazy-multi-example
main-is: CrazyMultiExample.hs
default-language: Haskell2010
if !flag(examples)
buildable: False
else
buildable: True
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, random
, time >= 1.4.0.1
hs-source-dirs: lib
, bin
test-suite hspec
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends: concurrent-output >= 1.7
, async >= 2.0.1.5
, base >=4 && <5
, data-default >= 0.5.3
, hspec >=2.1 && <3
, time >= 1.4.0.1
, QuickCheck >= 2.6
hs-source-dirs: lib
, test
default-language: Haskell2010