-
Notifications
You must be signed in to change notification settings - Fork 1
/
dockerfile.cabal
46 lines (42 loc) · 1.15 KB
/
dockerfile.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
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 903ba5a19231f754ceb5a3b9fc52f72de494f50efcef09332c8b8eda932ba098
name: dockerfile
version: 0.2.0
synopsis: A Haskell DSL for generating Dockerfiles
category: Data
homepage: https://github.com/creichert/dockerfile#readme
bug-reports: https://github.com/creichert/dockerfile/issues
author: Christopher Reichert
maintainer: [email protected]
copyright: (c) 2018 Christopher Reichert <[email protected]>
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/creichert/dockerfile
library
exposed-modules:
Data.Docker
other-modules:
Control.Monad.Writer
build-depends:
base ==4.*
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_dockerfile
hs-source-dirs:
test
ghc-options: -Wall
build-depends:
base ==4.*
, dockerfile
, hspec
default-language: Haskell2010