-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsystem-extra.cabal
35 lines (33 loc) · 1.25 KB
/
system-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
name: system-extra
version: 0.1.0
synopsis: A bunch of system utilities used by other projects
description: This package provides various system-level utilities, mostly related to building packages
within docker
license: MIT
license-file: LICENSE
author: Arnaud Bailly
maintainer: [email protected]
category: System
build-type: Simple
cabal-version: >=1.10
library
exposed-modules: System.Docker
, System.Build
, System.IO.Extra
, System.Network.Extra
, System.ProcessControl
build-depends: base < 5
, bytestring, directory, process
hs-source-dirs: src
ghc-options: -Wall -fno-warn-orphans
default-language: Haskell2010
Test-Suite tests
Default-Language: Haskell2010
hs-source-dirs: test
type: exitcode-stdio-1.0
main-is: test.hs
ghc-options: -threaded -Wall -fno-warn-orphans -rtsopts
build-depends: base < 5
, hspec
, QuickCheck
, system-extra