-
Notifications
You must be signed in to change notification settings - Fork 0
/
GitPrompt.cabal
60 lines (56 loc) · 1.66 KB
/
GitPrompt.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
name: GitPrompt
version: 2.11.0
-- synopsis:
-- description:
homepage: https://github.com/awgn/GitPrompt
license: BSD3
license-file: LICENSE
author: Nicola Bonelli
maintainer: [email protected]
copyright: 2017 Nicola Bonelli
category: Shell
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
flag StaticBuild {
Description: "Enable static build"
Default: False
}
executable GitPrompt
hs-source-dirs: src
main-is: Main.hs
other-modules: Git
Netns
Colors
Options
Paths_GitPrompt
default-language: Haskell2010
build-depends: base >=4.6,
ansi-terminal,
directory,
process,
split,
transformers,
mtl,
monad-parallel,
unix,
filepath,
optparse-applicative,
tuple
if flag (StaticBuild) {
ghc-options: -O2
-Wall
-funbox-strict-fields
-fwrite-ide-info
-hiedir=.hie
-threaded
-optl-static -optl-pthread
}
else {
ghc-options: -O2
-Wall
-funbox-strict-fields
-fwrite-ide-info
-hiedir=.hie
-threaded
}