-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathearth.cabal
71 lines (64 loc) · 1.94 KB
/
earth.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
cabal-version: 3.0
name: earth
version: 0.1.0.0
license: MIT
license-file: LICENSE
author: cidkidnix
maintainer: [email protected]
category: System
build-type: Simple
extra-doc-files: CHANGELOG.md
common warnings
ghc-options: -Wall
library
import: warnings
build-depends: base ^>=4.16.3.0,
cli-extras,
directory,
exceptions,
filepath,
lens,
optparse-applicative,
text,
time,
unix,
which,
aeson
exposed-modules: Earth.Basalt,
Earth.Builders,
Earth.Cli,
Earth.Darwin,
Earth.Deploy,
Earth.Flake,
Earth.GC,
Earth.Helpers,
Earth.Nix,
Earth.Legacy,
Earth.Types
if !os(darwin) || !os(osx)
build-depends: linux-mount
exposed-modules: Earth.Install,
Earth.Linux
hs-source-dirs: src
default-extensions: ConstraintKinds,
FlexibleContexts,
ImportQualifiedPost,
InstanceSigs,
LambdaCase,
OverloadedStrings,
ScopedTypeVariables,
TemplateHaskell
default-language: Haskell2010
executable earth
import: warnings
main-is: Main.hs
build-depends: base ^>=4.16.3.0,
hostname,
earth,
cli-extras,
text
hs-source-dirs: exe
default-extensions: ConstraintKinds,
FlexibleContexts
default-language: Haskell2010
ghc-options: -O2