Skip to content

Commit 43836df

Browse files
committed
Skeleton Azure backend
1 parent 732a665 commit 43836df

File tree

4 files changed

+62
-0
lines changed

4 files changed

+62
-0
lines changed

distributed-process-azure/LICENSE

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Copyright Well-Typed LLP, 2011-2012
2+
3+
All rights reserved.
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
11+
* Redistributions in binary form must reproduce the above
12+
copyright notice, this list of conditions and the following
13+
disclaimer in the documentation and/or other materials provided
14+
with the distribution.
15+
16+
* Neither the name of the owner nor the names of other
17+
contributors may be used to endorse or promote products derived
18+
from this software without specific prior written permission.
19+
20+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31+

distributed-process-azure/Setup.hs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
import Distribution.Simple
2+
main = defaultMain
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
Name: distributed-process-azure
2+
Version: 0.1.0
3+
Cabal-Version: >=1.8
4+
Build-Type: Simple
5+
License: BSD3
6+
License-File: LICENSE
7+
Copyright: Well-Typed LLP
8+
Author: Duncan Coutts, Nicolas Wu, Edsko de Vries
9+
Maintainer: edsko@well-typed.com, dcoutts@well-typed.com
10+
Stability: experimental
11+
Homepage: http://github.com/haskell-distributed/distributed-process
12+
Bug-Reports: mailto:edsko@well-typed.com
13+
Synopsis: Microsoft Azure backend for Cloud Haskell
14+
Category: Control
15+
16+
Source-Repository head
17+
Type: git
18+
Location: https://github.com/haskell-distributed/distributed-process
19+
SubDir: distributed-process-azure
20+
21+
Library
22+
Build-Depends: base >= 4.4 && < 5,
23+
azure-service-api
24+
Exposed-modules: Control.Distributed.Process.Backend.Azure
25+
ghc-options: -Wall
26+
HS-Source-Dirs: src
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module Control.Distributed.Process.Backend.Azure where
2+
3+
import Network.Azure.ServiceManagement

0 commit comments

Comments
 (0)