packages feed

bound-simple-0.1.0.0: bound-simple.cabal

name:                bound-simple
version:             0.1.0.0
synopsis:            A lightweight implementation of 'bound'
description:         An abstraction for representing bound variables. Most of this code has been extracted from 'bound', with the purpose of providing a mostly self-contained library for implementing embedded languages.
homepage:            https://github.com/ocramz/bound-simple
license:             BSD3
license-file:        LICENSE
author:              Marco Zocca
maintainer:          ocramz
copyright:           2013 Edward Kmett, 2021 Marco Zocca
category:            Language
build-type:          Simple
extra-source-files:  README.md
                     Changelog.md
cabal-version:       >=1.10
tested-with:         GHC == 8.10.7

library
  default-language:    Haskell2010
  ghc-options:         -Wall
  hs-source-dirs:      src
  exposed-modules:     Bound.Simple
                       Data.Functor.Classes.Generic
  build-depends:       base >= 4.7 && < 5
                     , transformers
                     -- -- DEBUG
                     -- , hspec >= 2.7.10
  other-extensions: DerivingVia

test-suite spec
  default-language:    Haskell2010
  ghc-options:         -Wall
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , bound-simple
                     , hspec

source-repository head
  type:     git
  location: https://github.com/ocramz/bound-simple