-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaws-elastic-transcoder.cabal
109 lines (94 loc) · 4.22 KB
/
aws-elastic-transcoder.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
Name: aws-elastic-transcoder
Version: 0.2.0.2
Synopsis: Haskell suite for the Elastic Transcoder service
Description: This suite extends the aws suite for the Amazon Web Services (AWS) to interface the AWS Elastic Transcoder service for transcoding video.
Homepage: http://github.com/iconnect/aws-elastic-transcoder
License: BSD3
License-file: LICENSE
Author: Chris Dornan
Maintainer: [email protected]
Copyright: Chris Dornan
Category: Network, Web, AWS, Cloud, Distributed Computing
Build-type: Simple
Cabal-version: >=1.14
Source-repository this
type: git
location: https://github.com/iconnect/aws-elastic-transcoder.git
tag: 0.2.0.0
Source-repository head
type: git
location: https://github.com/iconnect/aws-elastic-transcoder.git
Flag Examples
Description: Build the examples.
Default: False
Library
Exposed-modules:
Aws.ElasticTranscoder
Aws.ElasticTranscoder.Commands
Aws.ElasticTranscoder.Commands.CreateJob
Aws.ElasticTranscoder.Commands.DeleteJob
Aws.ElasticTranscoder.Commands.CreatePreset
Aws.ElasticTranscoder.Commands.GetPreset
Aws.ElasticTranscoder.Commands.ListPresets
Aws.ElasticTranscoder.Commands.DeletePreset
Aws.ElasticTranscoder.Commands.GetJob
Aws.ElasticTranscoder.Commands.ListJobsByPipeline
Aws.ElasticTranscoder.Commands.ListJobsByStatus
Aws.ElasticTranscoder.Commands.CreatePipeline
Aws.ElasticTranscoder.Commands.ListPipelines
Aws.ElasticTranscoder.Commands.GetPipeline
Aws.ElasticTranscoder.Commands.UpdatePipelineStatus
Aws.ElasticTranscoder.Commands.UpdatePipelineNotifications
Aws.ElasticTranscoder.Commands.DeletePipeline
Aws.ElasticTranscoder.Commands.TestRole
Aws.ElasticTranscoder.Core
Aws.ElasticTranscoder.Json.Types
Build-depends:
QuickCheck >= 2.5.1 ,
aeson >= 0.6.1 ,
aws >= 0.8.0 ,
aws-sign4 >= 0.0.0.1 ,
base == 4.* ,
bytestring >= 0.9 ,
conduit >= 0.5 ,
containers >= 0.4 ,
http-conduit >= 1.6 ,
http-types >= 0.7 ,
regex-compat >= 0.95 ,
safe >= 0.3.3 ,
text >= 0.11 ,
time >= 1.1.4 ,
transformers >= 0.2.2.0
GHC-Options: -Wall
Default-Language: Haskell2010
Test-Suite ets-json
type: detailed-0.9
test-module: Aws.ElasticTranscoder.Json.Test
Build-depends:
Cabal >= 1.9.2 ,
QuickCheck >= 2.5.1 ,
aeson >= 0.6.1 ,
base == 4.* ,
containers >= 0.4 ,
regex-compat >= 0.95 ,
safe >= 0.3.3 ,
text >= 0.11
Other-modules:
Aws.ElasticTranscoder.Json.Types
GHC-Options: -Wall
Default-Language: Haskell2010
Executable SubmitETS
Main-is: SubmitETS.hs
Hs-source-dirs: Examples
if !flag(Examples)
Buildable: False
else
Buildable: True
Build-depends:
base == 4.* ,
aws ,
aws-elastic-transcoder ,
conduit ,
http-conduit ,
text
Default-Language: Haskell2010