-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhahet.cabal
100 lines (92 loc) · 3.35 KB
/
hahet.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
name: hahet
version: 0.0.0.0
synopsis: The Hahet configuration management system
description: A framework for writing your server configuration files
type-safely in Haskell and apply them to the server as a
executable.
homepage: coming-soon
license: MIT
license-file: LICENSE
author: Samuli Thomasson
maintainer: samuli.thomasson@paivola.fi
-- copyright:
-- category:
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules: Hahet
Hahet.Imports
Hahet.Targets
Hahet.Targets.Packages
Hahet.Targets.FileNodes
Hahet.Targets.Services
Hahet.Modules.DateTimeManager
Hahet.Modules.ModNginx
Hahet.Modules.SSH
Hahet.Internal
other-modules: Hahet.Targets.Internal.Packages
Hahet.Logging
-- other-modules:
build-depends: base ==4.6.*
, containers ==0.5.*
, data-default ==0.5.*
, directory ==1.2.*
, interpolatedstring-perl6 ==0.9.*
, monad-logger ==0.3.*
, fast-logger ==0.3.*
, template-haskell ==2.8.*
, ansi-terminal ==0.6.*
, mtl ==2.1.*
, shelly ==1.3.0.*
, text ==0.11.*
, lens
extensions: DeriveDataTypeable
ExtendedDefaultRules
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
MultiParamTypeClasses
NoImplicitPrelude
OverloadedStrings
QuasiQuotes
RankNTypes
TemplateHaskell
TypeFamilies
CPP
ghc-options: -Wall -fno-warn-type-defaults
executable host-applicative
hs-source-dirs: hahet-example
main-is: host-applicative.hs
build-depends: base, hahet
Test-Suite Main
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: src, tests
cpp-options: -DTESTS
build-depends: base
, containers ==0.5.*
, data-default ==0.5.*
, directory ==1.2.*
, interpolatedstring-perl6 ==0.9.*
, monad-logger ==0.3.*
, fast-logger ==0.3.*
, template-haskell ==2.8.*
, ansi-terminal ==0.6.*
, mtl ==2.1.*
, shelly ==1.3.0.*
, text ==0.11.*
, QuickCheck
extensions: DeriveDataTypeable
ExtendedDefaultRules
FlexibleInstances
GADTs
GeneralizedNewtypeDeriving
MultiParamTypeClasses
NoImplicitPrelude
OverloadedStrings
QuasiQuotes
RankNTypes
TemplateHaskell
TypeFamilies
CPP