packages feed

compare-type-0.1.1: compare-type.cabal

name: compare-type
category: Dependent Types
version: 0.1.1
license: BSD3
license-file: LICENSE
cabal-version: >= 1.10
tested-with: GHC==7.8.3
author: Yusuke Matsushita
maintainer: Yusuke Matsushita <y.skm24t@gmail.com>
stability: provisional
homepage: https://github.com/Kinokkory/compare-type
bug-reports: https://github.com/Kinokkory/compare-type/issues
copyright: (c) Yusuke Matsushita 2015
synopsis: compare types of any kinds in haskell
description:
    Compare two types of any (possibly different) kinds in Haskell.
    .
    More information can be found in the <http://hackage.haskell.org/package/compare-type hackage's haddock> or the <http://kinokkory.github.io/compare-type/ updated haddock>.

build-type: Simple

source-repository head
    type: git
    location: git@github.com:Kinokkory/compare-type.git

library
    hs-source-dirs: src
    default-language: Haskell2010
    other-extensions:
        Safe, Trustworthy,
        TypeOperators,
        PolyKinds, DataKinds,
        TypeFamilies,
        UndecidableInstances
    build-depends:
        base >= 4.7 && < 5
    exposed-modules: Type.Compare
    ghc-options: -Wall