diff options
author | Herbert Valerio Riedel <hvr@gnu.org> | 2017-12-07 09:58:00 +0100 |
---|---|---|
committer | Herbert Valerio Riedel <hvr@gnu.org> | 2017-12-07 10:14:29 +0100 |
commit | 5f332e1dab000e1f79c127d441f618280d14d2bd (patch) | |
tree | 4969e416e1c31e8fe28b72ed27d5b17f4e63ebb7 /libraries/integer-gmp | |
parent | 1ecbe9ccb10f42dc5b133ffb2c7b1e9247b1ba52 (diff) | |
download | haskell-5f332e1dab000e1f79c127d441f618280d14d2bd.tar.gz |
Forward-port changes from GHC 8.2 branch
(cherry picked from commit 3fa061a647d2fdc182eff9296eea02d6a7d516cd)
Diffstat (limited to 'libraries/integer-gmp')
-rw-r--r-- | libraries/integer-gmp/integer-gmp.cabal | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/libraries/integer-gmp/integer-gmp.cabal b/libraries/integer-gmp/integer-gmp.cabal index 2f32b34627..6edacea79c 100644 --- a/libraries/integer-gmp/integer-gmp.cabal +++ b/libraries/integer-gmp/integer-gmp.cabal @@ -1,5 +1,7 @@ +cabal-version: 2.0 name: integer-gmp version: 1.0.1.0 + synopsis: Integer library based on GMP license: BSD3 license-file: LICENSE @@ -7,7 +9,14 @@ author: Herbert Valerio Riedel maintainer: hvr@gnu.org category: Numeric, Algebra build-type: Configure -cabal-version: >=1.10 +description: + This package provides the low-level implementation of the standard + 'Integer' type based on the + <http://gmplib.org/ GNU Multiple Precision Arithmetic Library (GMP)>. + . + This package provides access to the internal representation of + 'Integer' as well as primitive operations with no proper error + handling, and should only be used directly with the utmost care. extra-source-files: aclocal.m4 @@ -46,7 +55,7 @@ library StandaloneDeriving UnboxedTuples UnliftedFFITypes - build-depends: ghc-prim + build-depends: ghc-prim ^>= 0.5.1.0 hs-source-dirs: src/ ghc-options: -this-unit-id integer-gmp -Wall cc-options: -std=c99 -Wall |