packages feed

th-instance-reification-0.1.4: th-instance-reification.cabal

name:
  th-instance-reification
version:
  0.1.4
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
  other-modules:
    THInstanceReification.Prelude.Basic
    THInstanceReification.Prelude.TH
  exposed-modules:
    THInstanceReification
  build-depends:
    -- data:
    containers >= 0.4 && < 0.6,
    -- debugging:
    loch-th == 0.2.*,
    placeholders == 0.1.*,
    -- template-haskell:
    th-expand-syns == 0.3.*,
    template-haskell < 2.11,
    -- general:
    list-extras == 0.4.*,
    base >= 4.6 && < 5
  default-extensions:
    Arrows
    BangPatterns
    ConstraintKinds
    DataKinds
    DefaultSignatures
    DeriveDataTypeable
    DeriveGeneric
    EmptyDataDecls
    FlexibleContexts
    FlexibleInstances
    FunctionalDependencies
    GADTs
    GeneralizedNewtypeDeriving
    ImpredicativeTypes
    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:   
    src
  main-is:          
    HTFTestSuite.hs
  other-modules:
    HTFTestSuite.Prerequisites
  ghc-options:
    -threaded
    "-with-rtsopts=-N"
  build-depends:
    -- testing:
    HTF == 0.12.*,
    -- data:
    containers,
    -- debugging:
    loch-th == 0.2.*,
    placeholders == 0.1.*,
    -- template-haskell:
    th-expand-syns,
    template-haskell,
    -- general:
    list-extras,
    base
  default-extensions:
    Arrows
    BangPatterns
    ConstraintKinds
    DataKinds
    DefaultSignatures
    DeriveDataTypeable
    DeriveGeneric
    EmptyDataDecls
    FlexibleContexts
    FlexibleInstances
    FunctionalDependencies
    GADTs
    GeneralizedNewtypeDeriving
    ImpredicativeTypes
    LambdaCase
    LiberalTypeSynonyms
    MultiParamTypeClasses
    MultiWayIf
    NoImplicitPrelude
    NoMonomorphismRestriction
    OverloadedStrings
    PatternGuards
    QuasiQuotes
    RankNTypes
    RecordWildCards
    ScopedTypeVariables
    StandaloneDeriving
    TemplateHaskell
    TupleSections
    TypeFamilies
    TypeOperators
  default-language:
    Haskell2010