name: haskell-mpfr
version: 0.1
synopsis: Correctly-rounded arbitrary-precision floating-point arithmetic
homepage: http://github.com/comius/haskell-mpfr
bug-reports: http://github.com/comius/haskell-mpfr/issues
license: LGPL
license-file: LICENSE
author: Edward A. Kmett, Daniel G. Peebles, Ivo List
maintainer: Ivo List <ivo.list@gmail.com>
copyright: Copyright (C) 2012-2015 Edward A. Kmett, Daniel G. Peebles, Ivo List
category: Numeric, Math
build-type: Custom
cabal-version: >= 1.22
tested-with:
GHC == 7.8.1,
GHC == 7.8.4
description:
This package imports functions from MPFR to Haskell in the same way as GMP is alreay imported.
This package should link correctly on either MacOS X or Linux with GHC 7.8.1 or later.
.
extra-source-files: cbits/mkMpfrDerivedConstants.c
source-repository head
type: git
location: git://github.com/comius/haskell-mpfr.git
library
exposed-modules:
Data.Approximate.MPFRLowLevel,
Data.Approximate.MPFR.Types
build-depends:
base >= 4.7 && < 5,
ghc-prim,
integer-gmp >= 0.2 && < 0.6
ghc-options: -Wall -O2 -fspec-constr -funbox-strict-fields
c-sources: cbits/mpfr-wrappers.cmm
include-dirs: src
hs-source-dirs: src
default-language: Haskell2010