packages feed

fcf-base-0.1.0.0: fcf-base.cabal

cabal-version:      3.0
name:               fcf-base
version:            0.1.0.0
synopsis: Family-of-families instances for base
description: See the package <https://hackage.haskell.org/package/fcf-family fcf-family> for more information.
homepage:           https://gitlab.com/lysxia/fcf-family
license:            MIT
license-file:       LICENSE
author:             Li-yao Xia
maintainer:         lysxia@gmail.com
category:           Other
build-type:         Simple
extra-doc-files:    CHANGELOG.md

common warnings
    ghc-options: -Wall

library
    import:           warnings
    exposed-modules:
      Fcf.Base
    build-depends:
      fcf-family,
      base >= 4.15 && < 4.19
    hs-source-dirs:   src
    default-language: Haskell2010

test-suite fcf-base-test
    import:           warnings
    default-language: Haskell2010
    type:             exitcode-stdio-1.0
    hs-source-dirs:   test
    main-is:          Main.hs
    build-depends:
        base,
        fcf-family,
        fcf-base