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 67 68 69 70 71 72 73 74 75 76 77
|
cabal-version: 3.0
name: template-haskell-compat-v0208
version: 0.1.9.4
category: TemplateHaskell, Compatibility
synopsis:
Backward-compatibility layer for Template Haskell newer than 2.8
description:
Collection of functions that aims to help you to write
Template Haskell that is compatible
with all versions of GHC starting from 7.6.
The oldest GHC serves as the common denominator here,
so the newer functionality is avoided here.
homepage:
https://github.com/nikita-volkov/template-haskell-compat-v0208
bug-reports:
https://github.com/nikita-volkov/template-haskell-compat-v0208/issues
author: Nikita Volkov <nikita.y.volkov@mail.ru>
maintainer: Nikita Volkov <nikita.y.volkov@mail.ru>
copyright: (c) 2016, Nikita Volkov
license: MIT
license-file: LICENSE
source-repository head
type: git
location:
git://github.com/nikita-volkov/template-haskell-compat-v0208.git
library
hs-source-dirs: library
default-extensions:
NoImplicitPrelude
NoMonomorphismRestriction
Arrows
BangPatterns
ConstraintKinds
DataKinds
DefaultSignatures
DeriveDataTypeable
DeriveFoldable
DeriveFunctor
DeriveGeneric
DeriveTraversable
EmptyDataDecls
FlexibleContexts
FlexibleInstances
FunctionalDependencies
GADTs
GeneralizedNewtypeDeriving
LambdaCase
LiberalTypeSynonyms
MagicHash
MultiParamTypeClasses
MultiWayIf
OverloadedStrings
ParallelListComp
PatternGuards
QuasiQuotes
RankNTypes
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
TemplateHaskell
TupleSections
TypeFamilies
TypeOperators
UnboxedTuples
default-language: Haskell2010
exposed-modules: TemplateHaskell.Compat.V0208
other-modules: TemplateHaskell.Compat.V0208.Prelude
build-depends:
, base >=4.6 && <5
, template-haskell >=2.8 && <2.23
|