packages feed

constr-eq-0.1.0.0: constr-eq.cabal

cabal-version:       >=1.10
-- Initial package description 'constr-eq.cabal' generated by 'cabal init'.
--   For further documentation, see http://haskell.org/cabal/users-guide/

name:                constr-eq
version:             0.1.0.0
synopsis:            Equality by only Constructor
description:
    This package provides functionality for equality by only Constructors.
    That means ConstrEq is ignore all parameters of a constructor and only makes a difference based on the constructor.


homepage:            https://github.com/kelemzol/constr-eq
-- bug-reports:
license:             BSD3
license-file:        LICENSE
author:              Zoltan Kelemen
maintainer:          voidp0@gmail.com
-- copyright:
category:            Generics
build-type:          Simple
extra-source-files:  CHANGELOG.md

library
  exposed-modules:   Generics.Deriving.ConstrEq
  -- other-modules:
  -- other-extensions:
  build-depends:       base >=4.12 && <4.13
  hs-source-dirs:      src
  default-language:    Haskell2010
  other-extensions:    TypeOperators
                     , DefaultSignatures
                     , FlexibleContexts
                     , TypeSynonymInstances