forked from bmillwood/applicative-quoters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplicative-quoters.cabal
39 lines (31 loc) · 1.14 KB
/
applicative-quoters.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
Cabal-Version: >= 1.6
Name: applicative-quoters
Version: 0.1.0.3
Category: Language
Synopsis: Quasiquoters for idiom brackets and an applicative do-notation
Description:
Quasiquoters taken from Matt Morrow's haskell-src-meta to implement
Conor McBride's idiom brackets, and a do-notation that only requires
Applicative (and is correspondingly less powerful).
Author: Matt Morrow
Maintainer: Ben Millwood <haskell@benmachine.co.uk>
Copyright: (c) Matt Morrow
License: BSD3
License-file: LICENSE
Build-type: Simple
Tested-with: GHC == 6.12.3, GHC == 7.0.1, GHC == 7.2.1
Library
Exposed-modules:
Control.Applicative.QQ.ADo
Control.Applicative.QQ.Idiom
Build-depends:
base >= 4 && < 4.6,
haskell-src-meta >= 0.2 && < 0.6,
template-haskell >= 2.4 && < 2.8
-- We disable the missing-fields warning because not only do quoteType
-- and quoteDec make no sense in this context, we can't initialise them
-- because they don't exist in TH < 2.5.
GHC-options: -Wall -fno-warn-missing-fields
Source-Repository head
type: git
location: git://github.com/benmachine/applicative-quoters.git