-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.yaml
47 lines (43 loc) · 1015 Bytes
/
package.yaml
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
name: typed-process
version: 0.2.12.0
synopsis: Run external processes, with strong typing of streams
description: Please see the tutorial at <https://github.com/fpco/typed-process#readme>
category: System
author: Michael Snoyman
maintainer: michael@snoyman.com
license: MIT
github: fpco/typed-process
homepage: https://github.com/fpco/typed-process
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >=4.12 && <5
- async >=2.0
- bytestring
- process >=1.2
- stm
- transformers
- unliftio-core
library:
source-dirs: src
when:
- condition: os(windows)
cpp-options: -DWINDOWS
tests:
typed-process-test: &typed-process-test
build-tools: hspec-discover
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- base64-bytestring
- hspec == 2.*
- temporary
- typed-process
typed-process-test-single-threaded:
<<: *typed-process-test
ghc-options: []