-
Notifications
You must be signed in to change notification settings - Fork 9
/
basic-sop.cabal
59 lines (57 loc) · 2.27 KB
/
basic-sop.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
name: basic-sop
version: 0.3.0
synopsis: Basic examples and functions for generics-sop
description:
This library contains various small examples of generic functions
written using the @<https://hackage.haskell.org/package/generics-sop generics-sop>@
library.
.
It is a good starting point if you want to see how generic functions
can be defined in the SOP style.
.
license: BSD3
license-file: LICENSE
author: Edsko de Vries <[email protected]>, Andres Löh <[email protected]>
maintainer: [email protected]
category: Generics
build-type: Simple
cabal-version: 1.24
extra-doc-files: CHANGELOG.md
tested-with: GHC==8.10.7, GHC==9.0.2, GHC==9.2.8, GHC==9.4.7, GHC==9.6.3, GHC==9.8.1
source-repository head
type: git
location: https://github.com/well-typed/basic-sop
library
exposed-modules: Generics.SOP.Eq
Generics.SOP.Arbitrary
Generics.SOP.Show
Generics.SOP.Skeleton
Generics.SOP.NFData
build-depends: base >= 4.6 && < 5,
generics-sop >= 0.2.3 && < 0.6,
text >= 1.1 && < 2.2,
QuickCheck >= 2.7 && < 2.15,
deepseq >= 1.3 && < 1.6
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
default-extensions: CPP
ScopedTypeVariables
TypeFamilies
RankNTypes
TypeOperators
GADTs
ConstraintKinds
MultiParamTypeClasses
TypeSynonymInstances
FlexibleInstances
FlexibleContexts
DeriveFunctor
DeriveFoldable
DeriveTraversable
DefaultSignatures
KindSignatures
DataKinds
FunctionalDependencies
if impl (ghc >= 7.8)
default-extensions: AutoDeriveTypeable