-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathshelly-extra.cabal
49 lines (38 loc) · 1.45 KB
/
shelly-extra.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
Name: shelly-extra
Version: 0.3.0.2
Synopsis: shelly features that require extra dependencies
Description: A background job implementation for performing tasks in parallel.
.
Please see the shelly package. Shelly provides a single module for convenient systems programming in Haskell, similar in spirit to POSIX shells.
.
shelly-extra is designed to be a grab bag for functionality that either
.
* requires extra dependencies
.
* is application specific and not generally applicable
.
Homepage: https://github.com/yesodweb/Shelly.hs
License: BSD3
License-file: LICENSE
Author: Greg Weber
Maintainer: Greg Weber <[email protected]>
Category: Development
Build-type: Simple
Cabal-version: >=1.8
Library
Exposed-modules: Shelly.Background
Build-depends: base >= 4 && < 5, shelly >= 1.4.3, SafeSemaphore >= 0.7
, async
, mtl >= 2
ghc-options: -Wall
test-suite test
type: exitcode-stdio-1.0
main-is: main.hs
hs-source-dirs: ., test
build-depends: hspec, async, mtl
ghc-options: -Wall
Build-depends: base, text, shelly, SafeSemaphore, HUnit
other-modules: Shelly.Background
source-repository head
type: git
location: https://github.com/yesodweb/Shelly.hs