-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnewtype-deriving.cabal
66 lines (62 loc) · 1.97 KB
/
newtype-deriving.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:
newtype-deriving
version:
0.1.4
synopsis:
Instance derivers for newtype wrappers
description:
Template Haskell based derivers for typical newtype instances,
which the @GeneralizedNewtypeDeriving@ extension refuses to handle.
.
Amongst others provides support for the \"monad-control\" classes:
.
* "Control.Monad.Trans.Control.MonadTransControl"
.
* "Control.Monad.Trans.Control.MonadBaseControl"
category:
Control, Template Haskell
homepage:
https://github.com/nikita-volkov/newtype-deriving
bug-reports:
https://github.com/nikita-volkov/newtype-deriving/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/newtype-deriving.git
library
hs-source-dirs:
library
ghc-options:
-funbox-strict-fields
default-extensions:
Arrows, BangPatterns, ConstraintKinds, DataKinds, DefaultSignatures, DeriveDataTypeable, DeriveFunctor, DeriveGeneric, EmptyDataDecls, FlexibleContexts, FlexibleInstances, FunctionalDependencies, GADTs, GeneralizedNewtypeDeriving, ImpredicativeTypes, LambdaCase, LiberalTypeSynonyms, MagicHash, MultiParamTypeClasses, MultiWayIf, NoImplicitPrelude, NoMonomorphismRestriction, OverloadedStrings, PatternGuards, ParallelListComp, QuasiQuotes, RankNTypes, RecordWildCards, ScopedTypeVariables, StandaloneDeriving, TemplateHaskell, TupleSections, TypeFamilies, TypeOperators, UnboxedTuples
default-language:
Haskell2010
other-modules:
NewtypeDeriving.Reification
NewtypeDeriving.Rendering
NewtypeDeriving.TH
exposed-modules:
NewtypeDeriving
build-depends:
template-haskell >= 2.7 && < 2.11,
monad-control >= 1.0 && < 1.1,
transformers-base == 0.4.*,
transformers >= 0.3 && < 0.5,
base-prelude >= 0.1.3 && < 2,
base >= 4.7 && < 5