-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcabal2ninja.cabal
108 lines (103 loc) · 5.82 KB
/
cabal2ninja.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
name: cabal2ninja
version: 0.0.1
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
category: Build
copyright: Copyright 2017 Awake Security
author: Awake Security
maintainer: Awake Security <[email protected]>
license: Apache-2.0
license-file: LICENSE.md
homepage: https://github.com/awakesecurity/cabal2ninja
bug-reports: https://github.com/awakesecurity/cabal2ninja/issues
category: Build
synopsis: A tool for building Cabal projects with Ninja.
description: A tool for building Cabal projects with Ninja.
source-repository head
type: git
branch: master
location: https://github.com/awakesecurity/cabal2ninja.git
library
hs-source-dirs: library
build-depends: base >= 4.8 && < 5.0
, aeson >= 1.0 && < 1.3
, aeson-diff >= 1.1 && < 1.2
, aeson-pretty >= 0.8 && < 0.9
, base >= 4.8 && < 5.0
, bytestring >= 0.10 && < 0.11
, Cabal >= 1.24 && < 1.25
, concurrent-supply >= 0.1 && < 0.2
, containers >= 0.5 && < 0.6
, cryptonite >= 0.21 && < 0.22
, deepseq >= 1.4 && < 1.5
, directory >= 1.3 && < 1.4
, Earley >= 0.11 && < 0.12
, exceptions >= 0.8 && < 0.9
, extra >= 1.5 && < 1.6
, flow >= 1.0 && < 1.1
, hashable >= 1.2 && < 1.3
, HUnit >= 1.5 && < 1.6
, intern >= 0.9 && < 0.10
, lens >= 4.15 && < 4.16
, language-ninja -any
, makefile >= 1.0 && < 1.1
, megaparsec >= 5.2 && < 5.3
, monad-mock >= 0.1 && < 0.2
, mtl >= 2.2 && < 2.3
, prettyprinter >= 1.1 && < 1.2
, prettyprinter-ansi-terminal >= 1.1 && < 1.2
, QuickCheck >= 2.9 && < 2.10
, quickcheck-instances >= 0.3 && < 0.4
, reflection >= 2.1 && < 2.2
, shake >= 0.15 && < 0.16
, smallcheck >= 1.1 && < 1.2
, smallcheck-lens >= 0.3 && < 0.4
, system-filepath >= 0.4 && < 0.5
, tasty >= 0.11 && < 0.12
, tasty-golden >= 2.3 && < 2.4
, tasty-html >= 0.4 && < 0.5
, tasty-hunit >= 0.9 && < 0.10
, tasty-lens >= 0.3 && < 0.4
, tasty-quickcheck >= 0.8 && < 0.9
, tasty-smallcheck >= 0.8 && < 0.9
, text >= 1.2 && < 1.3
, transformers >= 0.5 && < 0.6
, turtle >= 1.3 && < 1.4
, unordered-containers >= 0.2 && < 0.3
, versions >= 3.1.1 && < 3.2
-- FIXME: remove unneeded dependencies
exposed-modules: CabalToNinja
default-language: Haskell2010
other-extensions: OverloadedStrings
-- FIXME: add the rest of the extensions used
ghc-options: -Wall -g -O0
-fno-warn-type-defaults
-fno-warn-unused-do-bind
-- FIXME: remove all unused imports
-fno-warn-unused-imports
test-suite tests
type: exitcode-stdio-1.0
hs-source-dirs: tests
main-is: Main.hs
build-depends: base, cabal2ninja
default-language: Haskell2010
ghc-options: -threaded -Wall -O0
executable cabal2ninja
hs-source-dirs: executables/cabal2ninja
main-is: Main.hs
build-depends: base, cabal2ninja
default-language: Haskell2010
ghc-options: -threaded -Wall -O0
executable ghc-scatter
hs-source-dirs: executables/ghc-scatter
main-is: Main.hs
build-depends: base >= 4.8 && < 5.0
, makefile >= 1.0 && < 1.1
, mtl >= 2.2 && < 2.3
, transformers >= 0.5 && < 0.6
, turtle >= 1.3 && < 1.4
default-language: Haskell2010
other-extensions: OverloadedStrings
-- FIXME: add the rest of the extensions used
ghc-options: -threaded -Wall -O0