File: th-orphans.cabal

package info (click to toggle)
haskell-th-orphans 0.7.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 60 kB
  • sloc: haskell: 111; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,250 bytes parent folder | download
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
name:               th-orphans
version:            0.7.0.1
cabal-version:      >= 1.6
build-type:         Simple
license:            BSD3
license-file:       LICENSE
category:           Template Haskell
author:             Matt Morrow
copyright:          (c) Matt Morrow
maintainer:         Michael Sloan <mgsloan at gmail>
bug-reports:        https://github.com/mgsloan/th-orphans/issues
stability:          experimental
tested-with:        GHC == 6.12.3, GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.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.
                    
library
  build-depends:   base >= 4.2 && < 4.8,
                   th-lift == 0.5.*

  if impl(ghc >= 7.4)
    Build-depends: template-haskell >= 2.7 && < 2.10
  else
    Build-depends: template-haskell >= 2.4 && < 2.7

  hs-source-dirs:  src
  exposed-modules: Language.Haskell.TH.Instances

source-repository head
  type:     git
  location: git://github.com/mgsloan/th-orphans.git