-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlife-sync.cabal
118 lines (107 loc) · 4.21 KB
/
life-sync.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
112
113
114
115
116
117
118
cabal-version: 2.4
name: life-sync
version: 1.1.1.0
synopsis: Synchronize personal configs across multiple machines.
description: Synchronize personal configs across multiple machines.
See [README](https://github.com/kowainik/life-sync#life-sync) for more details.
homepage: https://github.com/kowainik/life-sync
bug-reports: https://github.com/kowainik/life-sync/issues
license: MPL-2.0
license-file: LICENSE
author: Dmitrii Kovanikov, Veronika Romashkina
maintainer: Kowainik <[email protected]>
copyright: 2018-2020 Kowainik
category: Configuration, CLI, CLI Tool, Development
stability: experimental
build-type: Simple
extra-doc-files: README.md
CHANGELOG.md
tested-with: GHC == 8.8.3
GHC == 8.10.1
source-repository head
type: git
location: https://github.com/kowainik/life-sync.git
common common-options
build-depends: base >= 4.13.0.0 && < 4.15
, relude ^>= 0.7.0.0
mixins: base hiding (Prelude)
, relude (Relude as Prelude
, Relude.Extra.Lens
)
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.8.1)
ghc-options: -Wmissing-deriving-strategies
-Werror=missing-deriving-strategies
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages
default-language: Haskell2010
default-extensions: ConstraintKinds
DeriveGeneric
DerivingStrategies
GeneralizedNewtypeDeriving
InstanceSigs
KindSignatures
LambdaCase
OverloadedStrings
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TupleSections
TypeApplications
ViewPatterns
library
import: common-options
hs-source-dirs: src
exposed-modules: Life.Cli
Life.Configuration
Life.Core
Life.Github
Life.Main
Life.Main.Add
Life.Main.Init
Life.Main.Pull
Life.Main.Push
Life.Main.Remove
Life.Message
Life.Path
build-depends: bytestring ^>= 0.10
, colourista ^>= 0.1.0.0
, containers ^>= 0.6
, exceptions ^>= 0.10.0
, optparse-applicative ^>= 0.15
, path == 0.7.0
, path-io ^>= 1.6.0
, shellmet ^>= 0.0.3.0
, text ^>= 1.2
, tomland ^>= 1.3.0.0
, validation-selective ^>= 0.1.0.0
executable life
import: common-options
hs-source-dirs: app
main-is: Main.hs
build-depends: life-sync
ghc-options: -threaded -rtsopts -with-rtsopts=-N
test-suite life-sync-test
import: common-options
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Test.Configuration
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends: life-sync
, containers
, filepath ^>= 1.4
, hedgehog ^>= 1.0
, hspec ^>= 2.7.1
, hspec-hedgehog ^>= 0.0.1.1
, path
, text
, tomland