-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreflex-process.cabal
74 lines (70 loc) · 1.88 KB
/
reflex-process.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
cabal-version: >=1.10
name: reflex-process
version: 0.3.3.1
synopsis: Reflex FRP interface for running system processes
description:
Run and interact with system processes from within a Reflex FRP application.
.
<https://reflex-frp.org>
bug-reports: https://github.com/reflex-frp/reflex-process/issues
license: BSD3
license-file: LICENSE
author: Obsidian Systems LLC
maintainer: [email protected]
copyright: 2020 Obsidian Systems LLC
category: System, FRP
build-type: Simple
extra-source-files: ChangeLog.md
README.md
tested-with:
GHC ==8.6.5 || ==8.10.7 || ==9.6.1
source-repository head
type: git
location: https://github.com/reflex-frp/reflex-process
library
exposed-modules: Reflex.Process
Reflex.Process.Lines
build-depends: base >=4.12 && <4.19
, async >= 2 && < 3
, bytestring >= 0.10 && < 0.12
, containers >= 0.6 && < 0.7
, data-default >= 0.2 && < 0.8
, process >= 1.6.4 && < 1.7
, reflex >= 0.7.1 && < 1
, unix >= 2.7 && < 2.9
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
executable readme
main-is: README.lhs
ghc-options: -threaded -optL -q
build-depends: base
, containers >= 0.5 && < 0.7
, data-default
, process
, reflex
, reflex-process
, reflex-vty >= 0.2 && < 0.7
, text >= 1.2.3 && < 2.1
, vty
default-language: Haskell2010
test-suite tests
default-language: Haskell2010
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options: -O2 -Wall -rtsopts -threaded
build-depends:
async,
base,
bytestring,
containers,
dependent-sum,
hspec,
mtl,
primitive,
process,
ref-tf,
reflex,
reflex-process,
unix