forked from davidlazar/process-extras
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathprocess-extras.cabal
76 lines (67 loc) · 1.82 KB
/
process-extras.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
Name: process-extras
Version: 0.7.4
Synopsis: Process extras
Description: Extends <http://hackage.haskell.org/package/process>.
Read process input and output as ByteStrings or
Text, or write your own ProcessOutput instance.
Lazy process input and output. ProcessMaker class
for more flexibility in the process creation API.
Homepage: https://github.com/seereason/process-extras
License: MIT
License-file: LICENSE
Author: David Lazar, Bas van Dijk, David Fox
Maintainer: David Fox <[email protected]>
Category: System
Build-type: Simple
Cabal-version: >=1.10
Extra-source-files:
README.md
changelog
tested-with:
GHC == 9.10.1
GHC == 9.8.2
GHC == 9.6.6
GHC == 9.4.8
GHC == 9.2.8
GHC == 9.0.2
GHC == 8.10.7
GHC == 8.8.4
GHC == 8.6.5
GHC == 8.4.4
GHC == 8.2.2
GHC == 8.0.2
source-repository head
Type: git
Location: https://github.com/seereason/process-extras
Library
Default-Language: Haskell2010
ghc-options: -Wall
Hs-source-dirs: src
Exposed-modules:
System.Process.ByteString
System.Process.ByteString.Lazy
System.Process.Chars
System.Process.Common
System.Process.ListLike
System.Process.Run
System.Process.Text
System.Process.Text.Lazy
System.Process.Text.Builder
Other-modules:
Utils
Build-depends:
base >= 4.5 && < 5,
data-default,
ListLike >= 4.4,
mtl,
process,
bytestring >= 0.10.0.0,
text,
deepseq >= 1.1,
generic-deriving >= 1.10
Test-Suite process-extras-tests
Default-Language: Haskell2010
type: exitcode-stdio-1.0
Hs-Source-Dirs: .
Main-Is: Tests.hs
Build-Depends: base, HUnit, process-extras