packages feed

th-instance-reification-0.1.5: th-instance-reification.cabal

name: th-instance-reification
version: 0.1.5
synopsis: Fixed versions of instances reification functions
description:
  Provides fixed versions of 'reifyInstances' and 'isInstance' as per
  the following ghc issue:
  <https://ghc.haskell.org/trac/ghc/ticket/7066>.
category: Template Haskell
homepage: https://github.com/nikita-volkov/th-instance-reification
bug-reports: https://github.com/nikita-volkov/th-instance-reification/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2014, Nikita Volkov
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10

source-repository head
  type: git
  location: git://github.com/nikita-volkov/th-instance-reification.git

library
  hs-source-dirs: src
  exposed-modules:
    THInstanceReification
  other-modules:
    THInstanceReification.Prelude.Basic
    THInstanceReification.Prelude.TH
  build-depends:
    base >=4.9 && <5,
    containers >=0.6 && <0.7,
    list-extras ==0.4.*,
    template-haskell >=2.11 && <2.16,
    th-expand-syns ==0.4.*
  default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators
  default-language: Haskell2010

test-suite th-instance-reification-htf-test-suite
  type: exitcode-stdio-1.0
  hs-source-dirs: test
  main-is: Main.hs
  other-modules:
    Main.Prerequisites
  ghc-options: -threaded "-with-rtsopts=-N"
  build-depends:
    QuickCheck >=2.13 && <3,
    quickcheck-instances >=0.3.22 && <0.4,
    rerebase ==1.*,
    tasty >=1.2.3 && <2,
    tasty-hunit >=0.10.0.2 && <0.11,
    tasty-quickcheck >=0.10.1 && <0.11,
    template-haskell,
    th-instance-reification
  default-extensions: Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, LambdaCase, LiberalTypeSynonyms, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators
  default-language: Haskell2010