This repository was archived by the owner on Apr 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloup.cabal
81 lines (75 loc) · 2.84 KB
/
loup.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
name: loup
version: 0.0.16
synopsis: Amazon Simple Workflow Service Wrapper for Work Pools.
description: Loup is a wrapper around Amazon Simple Workflow Service for Work Pools.
homepage: https://github.com/swift-nav/loup
license: MIT
license-file: LICENSE
author: Swift Navigation Inc.
maintainer: Mark Fine <[email protected]>
copyright: Copyright (C) 2017 Swift Navigation, Inc.
category: Network, AWS, Cloud, Distributed Computing
build-type: Simple
cabal-version: >= 1.22
source-repository head
type: git
location: [email protected]:swift-nav/loup.git
library
exposed-modules: Network.AWS.Loup
other-modules: Network.AWS.Loup.Act
, Network.AWS.Loup.Converge
, Network.AWS.Loup.Ctx
, Network.AWS.Loup.Decide
, Network.AWS.Loup.Prelude
, Network.AWS.Loup.Types
, Network.AWS.Loup.Types.Alias
, Network.AWS.Loup.Types.Ctx
, Network.AWS.Loup.Types.Product
, Network.AWS.Loup.Types.Sum
default-language: Haskell2010
hs-source-dirs: src
ghc-options: -Wall
build-depends: aeson
, amazonka
, amazonka-swf
, base >= 4.8 && < 5
, bytestring
, conduit
, lifted-async
, lifted-base
, preamble
, time
, turtle
, unordered-containers
, uuid
, yaml
executable loup-actor
hs-source-dirs: main
main-is: actor.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base
, loup
, optparse-generic
default-language: Haskell2010
executable loup-decider
hs-source-dirs: main
main-is: decider.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base
, loup
, optparse-generic
default-language: Haskell2010
executable loup-converger
hs-source-dirs: main
main-is: converger.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base
, loup
, optparse-generic
default-language: Haskell2010
executable shake-loup
main-is: Shakefile.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: base >= 4.8 && < 5
, shakers
default-language: Haskell2010