-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregular-extras.cabal
More file actions
49 lines (42 loc) · 1.71 KB
/
regular-extras.cabal
File metadata and controls
49 lines (42 loc) · 1.71 KB
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
name: regular-extras
version: 0.2.3
synopsis: Additional functions for regular: arbitrary,
coarbitrary, and binary get/put.
description:
Additional functions for the regular [1] generic programming library, such
as arbitrary, coarbitrary, and binary get/put. These are not bundled with the
library because they introduce dependencies on additional packages.
.
\[1] <http://hackage.haskell.org/package/regular>
category: Generics
copyright: (c) 2010 Universiteit Utrecht
license: BSD3
license-file: LICENSE
author: Jose Pedro Magalhaes,
Sebastiaan Visser
maintainer: generics@haskell.org
stability: experimental
build-type: Custom
cabal-version: >= 1.6
tested-with: GHC == 6.10.4, GHC == 6.12.1
extra-source-files: examples/Test.hs
ChangeLog
source-repository head
type: git
location: https://github.com/dreixel/regular-extras
flag quickcheck2
description: Are we using Quickcheck 2?
default: True
library
hs-source-dirs: src
exposed-modules: Generics.Regular.Functions.Arbitrary,
Generics.Regular.Functions.Binary,
Generics.Regular.Functions.Seq
other-modules: Generics.Regular.Functions.Fixpoints
build-depends: base >= 4.0 && < 5, regular >= 0.3 && < 0.4,
binary >= 0.2, deepseq < 2
if flag(quickcheck2)
build-depends: QuickCheck >= 2.1 && < 2.7
else
build-depends: QuickCheck >= 1.2 && < 1.3
ghc-options: -Wall