-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconstraints-extras.cabal
52 lines (48 loc) · 1.56 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
name: constraints-extras
version: 0.4
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: maintainer@obsidian.systems
copyright: Obsidian Systems LLC
build-type: Simple
cabal-version: 2.0
tested-with:
GHC ==8.6.5
extra-source-files: README.md
ChangeLog.md
flag build-readme
default: True
library
exposed-modules: Data.Constraint.Extras
, Data.Constraint.Extras.TH
, Data.Constraint.Compose
other-modules: Data.Constraint.Flip
other-extensions: LambdaCase
, MultiParamTypeClasses
, QuasiQuotes
, TypeFamilies
, TypeOperators
, ConstraintKinds
, TemplateHaskell
build-depends: base >=4.9 && <4.13
, constraints >= 0.9 && < 0.11
, template-haskell >=2.11 && <2.15
hs-source-dirs: src
default-language: Haskell2010
executable readme
if !flag(build-readme)
buildable: False
build-depends: base >=4.9 && <4.13
, aeson
, constraints >= 0.9 && < 0.11
, 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