forked from relrod/digitalocean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigitalocean-hs.cabal
34 lines (27 loc) · 1.48 KB
/
digitalocean-hs.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
name: digitalocean-hs
version: 0.1.0.0
synopsis: A Haskell library for working with the DigitalOcean API
description: This library intends to give an easy means of accessing and manipulating all parts of the DigitalOcean API. Currently only supports querying images, regions, ssh_keys and droplet sizes. Can also generate new droplets.
homepage: https://github.com/CodeBlock/digitalocean-hs
license: BSD3
license-file: LICENSE
author: Maxwell Swadling, Ricky Elrod
maintainer: [email protected], [email protected]
copyright: Copyright (c) 2013, Maxwell Swadling, Copyright (c) 2013, Ricky Elrod
category: Web, Network, Cloud
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/CodeBlock/digitalocean-hs.git
library
exposed-modules: Network.DigitalOcean
build-depends: base >=4.6 && <4.7, text ==0.11.*, transformers ==0.3.*, aeson ==0.6.*, bytestring ==0.10.*, http-conduit ==1.9.*, HTTP ==4000.2.*
hs-source-dirs: src
default-language: Haskell2010
executable digitalocean-status
main-is: main.hs
build-depends: base >=4.6 && <4.7, text ==0.11.*, transformers ==0.3.*, aeson ==0.6.*, bytestring ==0.10.*, http-conduit ==1.9.*, HTTP ==4000.2.*, boxes >=0.1.3
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -O2 -threaded