-- Initial is.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: is version: 0.4 synopsis: Generic pattern predicates description: Generate predicates of type (t → Bool) from constructors or patterns of type t. Uses either Template Haskell or instances of Generic or Typeable. Generating predicates from arbitrary patterns requires TH. license: BSD3 license-file: LICENSE author: Víctor López Juan maintainer: project-is@lopezjuan.com -- copyright: category: Data build-type: Simple extra-source-files: CHANGELOG src-th-2.11/Data/Generics/Is/TH/Compat.hs src-th-2.10/Data/Generics/Is/TH/Compat.hs stack.yaml stack-7.10.3.yaml stack-7.8.4.yaml Makefile cabal-version: >=1.10 source-repository head type: git location: git@framagit.org:vlopez/is.git source-repository this type: git location: git@framagit.org:vlopez/is.git tag: v0.4 library hs-source-dirs: src/ build-depends: base >= 4.7 && < 4.10 exposed-modules: Data.Generics.Is ,Data.Generics.Is.TH ,Data.Generics.Is.Generic ,Data.Generics.Is.Data other-modules: Data.Generics.Is.Internal ,Data.Generics.Is.TH.Compat default-language: Haskell2010 ghc-options: -Wall if impl(ghc == 8.0.*) build-depends: template-haskell == 2.11.* hs-source-dirs: src-th-2.11/ if impl(ghc == 7.10.*) build-depends: template-haskell == 2.10.* hs-source-dirs: src-th-2.10/ if impl(ghc == 7.8.*) build-depends: template-haskell == 2.9.* hs-source-dirs: src-th-2.10/ test-suite test type: exitcode-stdio-1.0 main-is: test/Test.hs build-depends: base >= 4.7 && < 4.10, template-haskell, is default-language: Haskell2010