-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconstraints-extras.cabal
62 lines (55 loc) · 1.96 KB
/
constraints-extras.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
name: constraints-extras
version: 0.4.0.2
synopsis: Utility package for constraints
description: Convenience functions and TH for working with constraints. See <https://github.com/obsidiansystems/constraints-extras/blob/develop/README.md README.md> for example usage.
category: Constraints
license: BSD3
license-file: LICENSE
author: Cale Gibbard, Ali Abrar
maintainer: [email protected]
homepage: https://github.com/obsidiansystems/constraints-extras
bug-reports: https://github.com/obsidiansystems/constraints-extras/issues
copyright: Obsidian Systems LLC
build-type: Simple
cabal-version: 2.0
tested-with:
GHC ==8.6.5 || ==8.8.4 || ==8.10.7
|| ==9.0.2 || ==9.2.8 || ==9.4.8 || ==9.6.6 || ==9.8.4 || ==9.10.1 || ==9.12.1
extra-doc-files: ChangeLog.md
extra-source-files: README.md
flag build-readme
default: True
library
exposed-modules: Data.Constraint.Extras
, Data.Constraint.Extras.TH
, Data.Constraint.Compose
, Data.Constraint.Flip
other-extensions: LambdaCase
, MultiParamTypeClasses
, QuasiQuotes
, TypeFamilies
, TypeOperators
, ConstraintKinds
, TemplateHaskell
build-depends: base >=4.9 && <4.23
, constraints >= 0.9 && < 0.15
, template-haskell >=2.11 && <2.24
hs-source-dirs: src
default-language: Haskell2010
-- This is needed to get around a bug/misfeature in the cabal solver which is choosing an
-- old version of aeson (0.9.*) for some reason.
if impl (ghc >= 9.12)
build-depends: aeson >= 2
executable readme
if !flag(build-readme)
buildable: False
build-depends: base
, aeson
, constraints
, constraints-extras
main-is: README.lhs
ghc-options: -Wall -optL -q
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/obsidiansystems/constraints-extras.git