-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathhS3.cabal
57 lines (51 loc) · 1.93 KB
/
hS3.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
Name: hS3
Version: 0.5.10
License: BSD3
License-file: LICENSE
Cabal-Version: >= 1.6
Copyright:
Copyright (c) 2008, Greg Heartsfield
Author: Greg Heartsfield <[email protected]>
Maintainer: Greg Heartsfield <[email protected]>
Homepage: http://gregheartsfield.com/hS3/
Category: Network, Web
Stability: Alpha
build-type: Simple
Synopsis: Interface to Amazon's Simple Storage Service (S3)
Description: This is the Haskell S3 library. It provides an
interface to Amazon's Simple Storage Service (S3), allowing Haskell
developers to reliably store and retrieve arbitrary amounts of
data from anywhere on the Internet.
extra-source-files: README, CONTRIBUTORS, FEATURES,
Tests.hs,
examples/createBucket.hs
examples/deleteObject.hs
examples/listBuckets.hs
examples/sendObject.hs
examples/deleteBucket.hs
examples/getObject.hs
examples/listObjects.hs
examples/uploadFile.hs
Flag network-uri
description: Get Network.URI from the network-uri package
default: True
source-repository head
type: git
location: https://github.com/scsibug/hS3
Library
Build-depends: base >= 3 && < 5, HTTP >= 4000.0.0, Crypto >= 4.1.0, hxt >= 9.0.0 && < 10, network,
regex-compat, old-time, random, old-locale, sandi, utf8-string, bytestring,
MissingH >= 0.18.6
if flag(network-uri)
Build-depends: network-uri >= 2.6, network >= 2.6
else
Build-depends: network-uri < 2.6, network < 2.6
Exposed-modules:
Network.AWS.S3Object,
Network.AWS.S3Bucket,
Network.AWS.AWSResult,
Network.AWS.AWSConnection,
Network.AWS.Authentication,
Network.AWS.ArrowUtils
Executable hs3
main-is: hS3.hs