-- Initial is.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: is version: 0.4.3 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. bug-reports: https://framagit.org/vlopez/is/issues 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-8.4.4.yaml stack-7.10.3.yaml stack-8.0.2.yaml stack-8.2.2.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.3 library hs-source-dirs: src/ build-depends: base >= 4.7 && < 5 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.4) build-depends: template-haskell >= 2.11 hs-source-dirs: src-th-2.11/ if impl(ghc == 8.2.*) build-depends: template-haskell >= 2.11 && < 2.14 hs-source-dirs: src-th-2.11/ if impl(ghc == 8.0.*) build-depends: template-haskell >= 2.11 && < 2.14 hs-source-dirs: src-th-2.11/ if impl(ghc == 7.10.*) build-depends: template-haskell < 2.11 hs-source-dirs: src-th-2.10/ if impl(ghc == 7.8.*) build-depends: template-haskell < 2.11 hs-source-dirs: src-th-2.10/ test-suite test type: exitcode-stdio-1.0 main-is: test/Test.hs build-depends: base, template-haskell, is default-language: Haskell2010 ghc-options: -fno-warn-overlapping-patterns