-
Notifications
You must be signed in to change notification settings - Fork 10
/
th-orphans.cabal
66 lines (63 loc) · 2.41 KB
/
th-orphans.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
name: th-orphans
version: 0.13.16
cabal-version: >= 1.10
build-type: Simple
license: BSD3
license-file: LICENSE
category: Template Haskell
author: Matt Morrow, Michael Sloan, Ryan Scott
copyright: (c) Matt Morrow, Michael Sloan, Ryan Scott
maintainer: Ryan Scott <ryan.gl.scott@gmail.com>
bug-reports: https://github.com/mgsloan/th-orphans/issues
stability: experimental
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.4
, GHC == 9.10.1
, GHC == 9.12.1
synopsis: Orphan instances for TH datatypes
description: Orphan instances for TH datatypes. In particular, instances
for Ord and Lift, as well as a few missing Show / Eq. These
instances used to live in haskell-src-meta, and that's where
the version number started.
extra-source-files: CHANGELOG.md, README.md
library
build-depends: base >= 4.9 && < 5,
template-haskell >= 2.11 && < 2.24,
th-compat >= 0.1 && < 0.2,
-- https://github.com/mboes/th-lift/issues/14
th-lift >= 0.7.1,
th-reify-many >= 0.1.9 && < 0.2,
mtl >= 2
hs-source-dirs: src
ghc-options: -Wall
if impl(ghc >= 8.6)
ghc-options: -Wno-star-is-type
exposed-modules: Language.Haskell.TH.Instances
other-modules: Language.Haskell.TH.Instances.Internal
default-language: Haskell2010
test-suite test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: TestUtil
build-depends: base,
bytestring,
ghc-prim,
hspec,
template-haskell,
th-lift,
th-orphans
build-tool-depends: hspec-discover:hspec-discover
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/mgsloan/th-orphans