packages feed

acme-omitted-3.0.0.0: acme-omitted.cabal

Name:                acme-omitted
Version:             3.0.0.0
Synopsis:            A name for omitted definitions
Category:            Acme
Stability:           stable
Description:
  acme-omitted provides a way of indicating that a definition
  has been \"omitted\" (though not inherently undefinable), an
  alternative to \"Prelude.undefined\", and the means to observe
  the difference.

License:             BSD3
License-file:        COPYING

Author:              Joachim Fasting
Maintainer:          joachifm@fastmail.fm
Copyright:           (c) 2013-2016 Joachim Fasting
Homepage:            https://github.com/joachifm/acme-omitted#readme

Extra-source-files:
    README.markdown
  , ChangeLog

Build-type:          Simple
Cabal-version:       >= 1.10

Tested-With:
            GHC == 7.0.4
          , GHC == 7.2.2
          , GHC == 7.4.2
          , GHC == 7.6.3
          , GHC == 7.8.4
          , GHC == 7.10.3
          , GHC == 8.0.1

Source-repository head
  Type: git
  location: https://github.com/joachifm/acme-omitted.git

Library
  Default-language: Haskell2010

  Exposed-modules:     Acme.Omitted,
                       Acme.Undefined,
                       Acme.OmittedOrUndefined

  Other-modules:       Acme.OmittedOrUndefined.Internal

  Build-depends:
    base >=3 && <5

  Hs-Source-Dirs: src

  ghc-options:
    -Wall

Test-Suite specs
  default-language: Haskell2010
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  Hs-Source-Dirs: src tests

  Build-depends:
      base >=3 && <5
    , hspec >=1.8.1