forked from buildsome/buildsome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildsome.cabal
167 lines (158 loc) · 5.96 KB
/
buildsome.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
-- Initial buildsome.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: buildsome
version: 0.2.0.0
synopsis: Buildsome: The awesome build system
description: An automatic dependency discovery build system
with a no-false-negative guarantee, speculative
parallelism, and distributed caching of build
outputs
license: GPL-2
license-file: LICENSE.txt
author: Eyal Lotem
maintainer: [email protected]
copyright: Elastifile (2014)
category: Development
build-type: Custom
extra-source-files: README.md
cabal-version: >=1.10
data-files: cbits/fs_override.so
extra-source-files: cbits/*.c cbits/*.h
flag Debug
Description: Enable debug support
Default: False
flag Charts
description: Enable Cairo charts support
default: False
executable buildsome
default-extensions: NoImplicitPrelude, OverloadedStrings, PartialTypeSignatures, LambdaCase, DeriveTraversable, DeriveGeneric
hs-source-dirs: src/
main-is: Main.hs
ghc-options: -threaded -Wall -Widentities -Wmissing-home-modules -Wincomplete-patterns -Wnoncanonical-monad-instances -Wsemigroup -Wincomplete-record-updates -Wimplicit-prelude -Wredundant-constraints
c-sources: cbits/shared.c
, cbits/sha1.c
cc-options: -Wall -O2 -fPIC -std=gnu11
if flag(debug) {
ghc-options: -threaded -Wall -O0
} else {
ghc-options: -threaded -Wall -O2 -fsimpl-tick-factor=1000 -rtsopts -with-rtsopts=-A16M -g
ghc-prof-options: -auto-all -caf-all
}
other-modules: Buildsome
, Buildsome.BuildId
, Buildsome.BuildMaps
, Buildsome.Chart
, Buildsome.ClangCommands
, Buildsome.Clean
, Buildsome.Color
, Buildsome.CompatMakefile
, Buildsome.Db
, Buildsome.FileContentDescCache
, Buildsome.MagicFiles
, Buildsome.Meddling
, Buildsome.Opts
, Buildsome.Print
, Buildsome.Slave
, Buildsome.Stats
, Buildsome.Types
, BMake.User
, BMake.Data
, BMake.Base
, BMake.Parser
, BMake.Lexer
, BMake.Interpreter
, Lib.AnsiConsoleUtils
, Lib.Argv0
, Lib.AsyncContext
, Lib.Binary
, Lib.ByteString
, Lib.Cartesian
, Lib.Cmp
, Lib.ColorText
, Lib.Directory
, Lib.Exception
, Lib.FSHook
, Lib.FSHook.AccessType
, Lib.FSHook.OutputBehavior
, Lib.FSHook.Protocol
, Lib.Fifo
, Lib.FileDesc
, Lib.FilePath
, Lib.Fresh
, Lib.IORef
, Lib.List
, Lib.Makefile
, Lib.Makefile.CondState
, Lib.Makefile.InstantiatePattern
, Lib.Makefile.Monad
, Lib.Makefile.MonadClass
, Lib.Makefile.Types
, Lib.Makefile.VerifyPhonies
, Lib.Map
, Lib.NonEmptyList
, Lib.Once
, Lib.Parallelism
, Lib.Parsec
, Lib.PoolAlloc
, Lib.Posix.FileType
, Lib.Posix.Instances
, Lib.Printer
, Lib.PriorityQueue
, Lib.Process
, Lib.Revisit
, Lib.ScanFileUpwards
, Lib.Set
, Lib.SharedMemory
, Lib.Show
, Lib.ShowBytes
, Lib.Sigint
, Lib.Sock
, Lib.StdOutputs
, Lib.StringPattern
, Lib.SyncMap
, Lib.TimeInstances
, Lib.TimeIt
, Lib.Timeout
, Lib.Version
, Paths_buildsome
build-depends: aeson >=0.7
, aeson-pretty >=0.7
, ansi-terminal >= 0.6
, array >= 0.5.1
, async >=2.0
, base >=4.6 && <4.13
, base-compat
, binary >=0.7
, bytestring >=0.10
, cassava >=0.4.2
, containers >=0.5
, cryptohash >=0.11
, data-default >=0.5
, deepseq >=1.3
, deepseq-generics >=0.1
, directory >= 1.2
, dlist >= 0.7.1.1
, either >=4.1
, leveldb-haskell >=0.6
, network >=2.4
, old-locale >= 1.0
, optparse-applicative >=0.7
, parsec >=3.1.5
, pretty-hex == 1.0
, process >=1.2
, split >=0.2
, system-argv0 >=0.1
, system-filepath >=0.4
, template-haskell >= 2.8
, time >=1.4
, transformers >=0.3
, unix >=2.6
, colour >=2.3
, inline-c >= 0.5.5.2
if flag(Charts)
cpp-options: -DWITH_CHARTS_SUPPORT
build-depends: Chart >= 1.2
, Chart-cairo >= 1.2
, data-default-class >= 0.0
build-tools: happy, alex
default-language: Haskell2010