-
Notifications
You must be signed in to change notification settings - Fork 1
/
generics-mrsop.cabal
56 lines (52 loc) · 1.75 KB
/
generics-mrsop.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 70539c4715fe3541bae476f1a318b450ec2afab772fca5e4d87aa41b9eab122a
name: generics-mrsop
version: 2.3.1
synopsis: Generic Programming with Mutually Recursive Sums of Products.
description: A library that supports generic programming for mutually recursive families in the sum-of-products style. . A couple usage examples can be found under "Generics.MRSOP.Examples" .
category: Generics
homepage: https://github.com/VictorCMiraldo/generics-mrsop#readme
bug-reports: https://github.com/VictorCMiraldo/generics-mrsop/issues
author: Victor Miraldo and Alejandro Serrano
maintainer: Victor Miraldo <v.cacciarimiraldo@gmail.com>
license: MIT
license-file: LICENSE
build-type: Simple
source-repository head
type: git
location: https://github.com/VictorCMiraldo/generics-mrsop
library
exposed-modules:
Generics.MRSOP.AG
Generics.MRSOP.Base
Generics.MRSOP.Base.Class
Generics.MRSOP.Base.Combinators
Generics.MRSOP.Base.Metadata
Generics.MRSOP.Base.NP
Generics.MRSOP.Base.NS
Generics.MRSOP.Base.Universe
Generics.MRSOP.Examples.LambdaAlphaEqTH
Generics.MRSOP.Examples.RoseTree
Generics.MRSOP.Examples.RoseTreeTH
Generics.MRSOP.Examples.SimpTH
Generics.MRSOP.Holes
Generics.MRSOP.Opaque
Generics.MRSOP.TH
Generics.MRSOP.Util
Generics.MRSOP.Zipper
other-modules:
Paths_generics_mrsop
hs-source-dirs:
src/
ghc-options: -Wall
build-depends:
base >=4.9 && <5
, containers
, mtl
, sop-core
, template-haskell
default-language: Haskell2010