-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfixme.cabal
120 lines (109 loc) · 3.28 KB
/
fixme.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: 3.0
name: fixme
version: 0.1.1.0
-- synopsis:
-- description:
license: BSD-3-Clause
license-file: LICENSE
author: Dmitry Zuikov
maintainer: [email protected]
-- copyright:
category: Development
build-type: Simple
extra-doc-files: CHANGELOG.md
-- extra-source-files:
common shared-properties
ghc-options:
-Wall
-- -fno-warn-unused-matches
-- -fno-warn-unused-do-bind
-- -Werror=missing-methods
-- -Werror=incomplete-patterns
-- -fno-warn-unused-binds
-threaded
-rtsopts
"-with-rtsopts=-N4 -A64m -AL256m -I0"
default-language: Haskell2010
default-extensions:
ApplicativeDo
, BangPatterns
, BlockArguments
, ConstraintKinds
, DataKinds
, DeriveDataTypeable
, DeriveGeneric
, DerivingStrategies
, DerivingVia
, ExtendedDefaultRules
, FlexibleContexts
, FlexibleInstances
, GADTs
, GeneralizedNewtypeDeriving
, ImportQualifiedPost
, LambdaCase
, MultiParamTypeClasses
, OverloadedStrings
, QuasiQuotes
, ScopedTypeVariables
, StandaloneDeriving
, TupleSections
, TypeApplications
, TypeFamilies
executable fixme
import: shared-properties
main-is: Main.hs
other-modules:
Fixme.Defaults
Fixme.Config
Fixme.OrDie
Fixme.Git
Fixme.Hash
Fixme.Base58
Fixme.State
Fixme.Prelude
Fixme.Types
Fixme.LocalConfig
Fixme.RunUpdate
Fixme.RunListAttribs
Fixme.RunReport
Fixme.RunLog
Fixme.RunLogMacro
Paths_fixme
-- other-extensions:
build-depends: base
, aeson
, aeson-pretty
, async
, attoparsec
, base16-bytestring
, base58-bytestring
, bytestring
, containers
, cryptonite
, data-default
, directory
, filepath
, filepattern
, interpolatedstring-perl6
, memory
, microlens-platform
, microstache
, mtl
, optparse-applicative
, prettyprinter
, safe
, serialise
, sqlite-simple
, suckless-conf
, text
, text-ansi
, transformers
, typed-process
, uniplate
, unordered-containers
, uuid
, generic-data
, generic-deriving
, hashable
hs-source-dirs: app
default-language: Haskell2010