-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregular.cabal
65 lines (59 loc) · 2.48 KB
/
regular.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
name: regular
version: 0.3.4.4
synopsis: Generic programming library for regular datatypes.
description:
This package provides generic functionality for regular datatypes.
Regular datatypes are recursive datatypes such as lists, binary trees,
etc. This library cannot be used with mutually recursive datatypes or
with nested datatypes. The multirec library [1] can deal with mutually
recursive datatypes.
.
This library has been described in the paper:
.
* /A Lightweight Approach to Datatype-Generic Rewriting./
Thomas van Noort, Alexey Rodriguez, Stefan Holdermans, Johan Jeuring, Bastiaan Heeren.
ACM SIGPLAN Workshop on Generic Programming 2008.
.
More information about this library can be found at
<http://www.cs.uu.nl/wiki/GenericProgramming/Regular>.
.
\[1] <http://hackage.haskell.org/package/multirec>
category: Generics
copyright: (c) 2011 Universiteit Utrecht, 2012 University of Oxford
license: BSD3
license-file: LICENSE
author: Jose Pedro Magalhaes
maintainer: [email protected]
stability: experimental
build-type: Custom
cabal-version: >= 1.6
extra-source-files: examples/Test.hs
ChangeLog
CREDITS
source-repository head
type: git
location: git://github.com/dreixel/regular.git
library
hs-source-dirs: src
exposed-modules: Generics.Regular
Generics.Regular.Base
Generics.Regular.Constructor
Generics.Regular.Selector
Generics.Regular.TH
Generics.Regular.Functions
Generics.Regular.Functions.ConNames
Generics.Regular.Functions.Crush
Generics.Regular.Functions.Eq
Generics.Regular.Functions.Fold
Generics.Regular.Functions.GMap
Generics.Regular.Functions.LR
Generics.Regular.Functions.Read
Generics.Regular.Functions.Show
Generics.Regular.Functions.Zip
build-depends: base >= 4.0 && < 5
if impl(ghc >= 6.12)
build-depends: template-haskell >=2.4 && <3
cpp-options: -DTH_TYVARBNDR
else
build-depends: template-haskell >= 2.2 && < 2.4
ghc-options: -Wall