forked from hadolint/language-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage-docker.cabal
111 lines (106 loc) · 2.9 KB
/
language-docker.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
-- This file has been generated from package.yaml by hpack version 0.17.1.
--
-- see: https://github.com/sol/hpack
name: language-docker
version: 1.0.0
synopsis: Dockerfile parser, pretty-printer and embedded DSL
description: All functions for parsing, printing and writting Dockerfiles are exported through @Language.Docker@. For more fine-grained operations look for specific modules that implement a certain functionality.
See the <https://github.com/hadolint/language-dockerfile GitHub project> for the source-code and examples.
category: Development
homepage: https://github.com/hadolint/language-docker#readme
bug-reports: https://github.com/hadolint/language-docker/issues
author: Lukas Martinelli,
Pedro Tacla Yamada,
José Lorenzo Rodríguez
maintainer: [email protected],
copyright: Lukas Martinelli, Copyright (c) 2016,
Pedro Tacla Yamada, Copyright (c) 2016,
José Lorenzo Rodríguez, Copyright (c) 2017
license: GPL-3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/hadolint/language-docker
library
hs-source-dirs:
src
ghc-options: -Wall -Werror -fno-warn-unused-do-bind -fno-warn-orphans
build-depends:
base >=4.8 && <5
, bytestring >=0.10
, parsec >=3.1
, pretty
, split >=0.2
, free
, mtl
, transformers
, template-haskell
, th-lift
, th-lift-instances
, text
, yaml
, aeson
, Glob
, unordered-containers
, directory
, filepath
exposed-modules:
Language.Docker
Language.Docker.Parser
Language.Docker.Predef
Language.Docker.PrettyPrint
Language.Docker.Normalize
Language.Docker.Syntax
Language.Docker.Lexer
Language.Docker.Syntax.Lift
Language.Docker.EDSL
Language.Docker.EDSL.Quasi
Language.Docker.EDSL.Types
other-modules:
Language.Docker.EDSL.Plugins
Paths_language_docker
default-language: Haskell2010
test-suite hspec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
build-depends:
base >=4.8 && <5
, bytestring >=0.10
, parsec >=3.1
, pretty
, split >=0.2
, free
, mtl
, transformers
, template-haskell
, th-lift
, th-lift-instances
, text
, yaml
, aeson
, Glob
, unordered-containers
, directory
, filepath
, hspec
, QuickCheck
, language-docker
, Glob
, directory
, filepath
, process
, HUnit >=1.2
other-modules:
Language.Docker.EDSL.PluginsSpec
Language.Docker.EDSL.QuasiSpec
Language.Docker.EDSLSpec
Language.Docker.ExamplesSpec
Language.Docker.ParserSpec
default-language: Haskell2010