File: syb-with-class.cabal

package info (click to toggle)
haskell-syb-with-class 0.6.1.14-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 120 kB
  • sloc: haskell: 1,025; makefile: 2
file content (48 lines) | stat: -rw-r--r-- 1,877 bytes parent folder | download
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
Name:               syb-with-class
Version:            0.6.1.14
License:            BSD3
License-file:       LICENSE
Copyright:          2004 - 2008 The University of Glasgow, CWI,
                                Simon Peyton Jones, Ralf Laemmel,
                                Ulf Norell, Sean Seefried, Simon D. Foster,
                                HAppS LLC
                    2009 Andrea Vezzosi
Author:             Simon Peyton Jones, Ralf Laemmel
Maintainer:         sanzhiyan@gmail.com
Stability:          experimental
Synopsis:           Scrap Your Boilerplate With Class
Description:
    Classes, and Template Haskell code to generate instances, for the
    Scrap Your Boilerplate With Class system.
Category:           Data
Tested-With:        GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.2
Build-Type:         Simple
Cabal-Version:      >= 1.10

source-repository head
  type:     git
  location: https://github.com/Happstack/syb-with-class

Library
    Default-Language: Haskell2010
    Build-Depends:      base >= 3 && < 5, template-haskell >= 2.4 && < 2.19, bytestring, array, containers
    Exposed-modules:
        Data.Generics.SYB.WithClass.Basics
        Data.Generics.SYB.WithClass.Context
        Data.Generics.SYB.WithClass.Derive
        Data.Generics.SYB.WithClass.Instances

    Default-Extensions: UndecidableInstances, OverlappingInstances, Rank2Types,
            EmptyDataDecls, TemplateHaskell, FlexibleInstances, CPP,
            KindSignatures, MultiParamTypeClasses

    GHC-Options: -Wall

test-suite syb-with-class-test
    Default-Language: Haskell2010
    Type: exitcode-stdio-1.0
    Hs-Source-Dirs: tests
    GHC-Options: -Wall
    Main-Is: Test.hs
    Build-Depends: base, HUnit, syb-with-class
    Default-Extensions: OverlappingInstances