packages feed

hascal-1.3: hascal.cabal

name:          hascal
version:       1.3
synopsis:      A minimal, extensible and precise calculator
description:   Hascal is a minimal calculator with infix-operations
               supporting addition, subtraction, division, multiplication,
               exponentiation and logarithming.
               Futhermore, it's easy to add custom operators.
stability:     provisional
category:      Math, Console, Tools, Utility, Utils, Parsing
homepage:      http://darcsden.com/mekeor/hascal
bug-reports:   https://github.com/MekeorMelire/hascal/issues
license:       GPL
license-file:  LICENSE
copyright:     2012 Mekeor Melire
author:        Mekeor Melire <mekeor.melire@googlemail.com>
maintainer:    Mekeor Melire <mekeor.melire@googlemail.com>
tested-with:   GHC ==7.0.4
cabal-version: >= 1.6
build-type:    Simple


source-repository head
  type:     darcs
  location: http://darcsden.com/mekeor/hascal


source-repository head
  type:     git
  location: git://github.com/MekeorMelire/hascal.git


library
  build-depends:   base >2 && <5, numbers >= 3000
  exposed-modules: Hascal
  ghc-options:     -Wall


executable hascal
  build-depends:   base >2 && <5, numbers >= 3000
  main-is:         Main.hs
  ghc-options:     -Wall