Skip to content
Snippets Groups Projects
Commit 8e1cd713 authored by Andreas Enge's avatar Andreas Enge Committed by Ludovic Courtès
Browse files

distro: mpc: Update to 1.0.1.

* distro/packages/multiprecision.scm (mpc): Update to 1.0.1.
parent d7e2841b
No related branches found
No related tags found
No related merge requests found
...@@ -95,14 +95,13 @@ (define-public mpfr ...@@ -95,14 +95,13 @@ (define-public mpfr
(define-public mpc (define-public mpc
(package (package
(name "mpc") (name "mpc")
(version "1.0") (version "1.0.1")
(source (origin (source (origin
(method url-fetch) (method url-fetch)
(uri (string-append (uri (string-append
"http://www.multiprecision.org/mpc/download/mpc-" "mirror://gnu/mpc/mpc-" version ".tar.gz"))
version ".tar.gz"))
(sha256 (base32 (sha256 (base32
"00rxjmkpqnv6zzcyw9aa5w6rzaav32ys87km25zgfcv9i32km5cw")))) "1zq0fidp1jii2j5k5n9hmx55a6wwid33gjzhimvxq9d5zrf82npd"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("gmp" ,gmp) (inputs `(("gmp" ,gmp)
("mpfr" ,mpfr))) ("mpfr" ,mpfr)))
...@@ -110,7 +109,11 @@ (define-public mpc ...@@ -110,7 +109,11 @@ (define-public mpc
with exact rounding") with exact rounding")
(description (description
"GNU MPC is a C library for the arithmetic of complex numbers with "GNU MPC is a C library for the arithmetic of complex numbers with
arbitrarily high precision and correct rounding of the result. It is built arbitrarily high precision and correct rounding of the result. It extends
upon and follows the same principles as GNU MPFR.") the principles of the IEEE-754 standard for fixed precision real floating
point numbers to complex numbers, providing well-defined semantics for
every operation. At the same time, speed of operation at high precision
is a major design goal. The library is built upon and follows the same
principles as GNU MPFR.")
(license "LGPLv3+") (license "LGPLv3+")
(home-page "http://mpc.multiprecision.org/"))) (home-page "http://mpc.multiprecision.org/")))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment