-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstack-all.cabal
68 lines (65 loc) · 2.43 KB
/
stack-all.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
name: stack-all
version: 0.6.4
synopsis: CLI tool for building over Stackage major versions
description:
Stack-all is a tool for stack building of a Haskell project
across multiple Stackage major LTS versions.
license: BSD3
license-file: LICENSE
author: Jens Petersen <[email protected]>
maintainer: Jens Petersen <[email protected]>
copyright: 2020-2024 Jens Petersen <[email protected]>
category: Distribution
homepage: https://github.com/juhp/stack-all
bug-reports: https://github.com/juhp/stack-all/issues
build-type: Simple
extra-doc-files: README.md
ChangeLog.md
cabal-version: 1.18
tested-with: GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.4, GHC == 8.6.5,
GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.2, GHC == 9.2.8,
GHC == 9.4.8, GHC == 9.6.6, GHC == 9.8.2
source-repository head
type: git
location: https://github.com/juhp/stack-all.git
flag aeson1
description: aeson-1 needs unordered-containers
default: False
manual: False
executable stack-all
main-is: Main.hs
other-modules: Paths_stack_all
MajorVer
Snapshots
StackYaml
hs-source-dirs: src
build-depends: base < 5
, aeson
, cached-json-file
, config-ini
, directory >= 1.2.5
, extra >= 1.6.15
, filepath
, http-query
, process
, simple-cmd >= 0.1.4
, simple-cmd-args >= 0.1.8
, text
, yaml
if flag(aeson1)
build-depends: unordered-containers
default-language: Haskell2010
ghc-options: -Wall
if impl(ghc >= 8.0)
ghc-options: -Wcompat
-Widentities
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wredundant-constraints
if impl(ghc >= 8.2)
ghc-options: -fhide-source-paths
if impl(ghc >= 8.4)
ghc-options: -Wmissing-export-lists
-Wpartial-fields
if impl(ghc >= 8.10)
ghc-options: -Wunused-packages