name: generic-deriving version: 1.2.1 x-revision: 1 synopsis: Generic programming library for generalised deriving. description: This package provides functionality for generalising the deriving mechanism in Haskell to arbitrary classes. It was first described in the paper: . * /A generic deriving mechanism for Haskell/. Jose Pedro Magalhaes, Atze Dijkstra, Johan Jeuring, and Andres Loeh. Haskell'10. . The current implementation integrates with the new GHC Generics. See for more information. Template Haskell code is provided for supporting GHC before version 7.2. category: Generics copyright: 2011 Universiteit Utrecht, 2012 University of Oxford license: BSD3 license-file: LICENSE author: José Pedro Magalhães maintainer: generics@haskell.org stability: experimental build-type: Custom cabal-version: >= 1.6 tested-with: GHC == 7.0.3, GHC == 7.2.1, GHC == 7.4.1 extra-source-files: examples/Examples.hs source-repository head type: git location: https://github.com/dreixel/generic-deriving library hs-source-dirs: src exposed-modules: Generics.Deriving Generics.Deriving.Base Generics.Deriving.Instances Generics.Deriving.ConNames Generics.Deriving.Enum Generics.Deriving.Eq Generics.Deriving.Functor Generics.Deriving.Show Generics.Deriving.Uniplate Generics.Deriving.TH build-depends: base >= 4.4 && < 4.6, template-haskell >=2.4 && <2.8 if impl(ghc > 7.0) build-depends: ghc-prim < 0.3 extensions: CPP ghc-options: -Wall