packages feed

nats-0.2: nats.cabal

name:          nats
category:      Numeric, Algebra
version:       0.2
license:       BSD3
cabal-version: >= 1.10
license-file:  LICENSE
author:        Edward A. Kmett
maintainer:    Edward A. Kmett <ekmett@gmail.com>
stability:     provisional
homepage:      http://github.com/ekmett/nats/
bug-reports:   http://github.com/ekmett/nats/issues
copyright:     Copyright (C) 2011-2014 Edward A. Kmett
synopsis:      Natural numbers
description:   Natural numbers
build-type:    Simple
extra-source-files:
  .ghci
  .gitignore
  .vim.custom
  .travis.yml
  README.markdown
  CHANGELOG.markdown

source-repository head
  type: git
  location: git://github.com/ekmett/nats.git

flag hashable
  description:
    You can disable the use of the `hashable` package using `-f-hashable`.
    .
    Disabling this is an unsupported configuration, but it may be useful for accelerating builds in sandboxes for expert users.
    .
    If set we will not supply an instance of `Hashable`
  default: True
  manual: True

library
  default-language: Haskell98
  hs-source-dirs: src
  ghc-options: -Wall

  exposed-modules:
    Numeric.Natural
    Numeric.Natural.Internal

  build-depends: base >= 2 && < 10

  if flag(hashable)
    build-depends: hashable >= 1.1 && < 1.3